system-config/container-config/nginx/sites/chat
Mathieu Strypsteen 1648634933
All checks were successful
ShellCheck / shellcheck (push) Successful in 17s
Unify nginx config
2024-11-20 17:38:13 +01:00

11 lines
251 B
Text

server {
server_name chat.strypsteen.com;
listen 443 ssl;
listen [::]:443 ssl;
include snippets/headers.conf;
location / {
set $upstream home.server.home.arpa;
proxy_pass http://$upstream:8001;
include snippets/proxy.conf;
}
}