trance/doc/trance.nginx

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:8082;
}
listen 80 ; # use certbot to enable https
listen [::]:80 ;
}