system-config/container-config/nginx-home/cloud

11 lines
252 B
Text

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