pacebin/doc/pacebin.nginx
2021-09-18 18:50:57 -04:00

13 lines
220 B
Nginx Configuration File

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