sneedmc.org/doc/sneedmc.nginx
2022-02-21 13:15:10 -05:00

13 lines
220 B
Nginx Configuration File

server {
rewrite_log on;
server_name sneedmc.org;
location / {
proxy_set_header Host $host;
proxy_pass http://localhost:33367;
}
listen 80 ; # use certbot to enable https
listen [::]:80 ;
}