10 lines
223 B
Plaintext
10 lines
223 B
Plaintext
|
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;
|
||
|
}
|
||
|
}
|