Mathieu Strypsteen
1648634933
All checks were successful
ShellCheck / shellcheck (push) Successful in 17s
11 lines
251 B
Text
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;
|
|
}
|
|
}
|