pacebin/doc/pacebin.nginx

13 lines
220 B
Plaintext
Raw Permalink Normal View History

2021-09-18 22:50:57 +00:00
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 ;
}