Update backend connectivity

This commit is contained in:
LukeGus
2025-07-27 19:41:24 -05:00
parent 64ac578d61
commit eb3008d097
3 changed files with 10 additions and 2 deletions

View File

@@ -18,6 +18,15 @@ http {
index index.html index.htm;
}
location /users/ {
proxy_pass http://127.0.0.1:8081;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /ssh/db/ {
proxy_pass http://127.0.0.1:8081;
proxy_http_version 1.1;