roysathome.net/nginx/conf.d/auth.roysathome.net.conf

10 lines
223 B
Plaintext
Raw Permalink Normal View History

2023-12-18 00:18:04 +00:00
server {
server_name auth.roysathome.net;
location / {
set $backend http://127.0.0.1:47706;
proxy_pass $backend;
proxy_set_header Host git.roysathome.net; #$host;
proxy_set_header X-Forwarded-Proto https;
}
}