This commit is contained in:
zino
2023-12-05 16:06:00 +01:00
parent 7bc63b8b20
commit f4600d1026

View File

@@ -17,14 +17,14 @@ server {
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
location / {
#resolver 127.0.0.11;
#set $upstream "http://vouch:9090";
resolver 127.0.0.11;
set $upstream "http://vouch:9090";
#proxy_pass $upstream;
#proxy_set_header Host $http_host;
proxy_pass http://vouch:9090;
proxy_pass $upstream;
proxy_set_header Host $http_host;
#proxy_pass http://vouch:9090;
#proxy_set_header Host $http_host;
}
}