sneedmc.org/doc/sneedmc.nginx

13 lines
220 B
Plaintext
Raw Normal View History

2022-02-21 18:15:10 +00:00
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 ;
}