mirror of
https://git.swurl.xyz/swirl/pacebin.git
synced 2024-11-14 17:03:16 +00:00
13 lines
220 B
Nginx Configuration File
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 ;
|
|
}
|