Reverse proxy

This commit is contained in:
2021-10-21 15:39:46 -04:00
parent 9c00e65826
commit 22750ea4c1

View File

@@ -16,7 +16,6 @@ server {
server_name localhost.cockpit;
location / {
proxy_pass http://127.0.0.1:9090/;
proxy_redirect http://127.0.0.1:9090/;
}
}
server {
@@ -25,7 +24,6 @@ server {
server_name localhost.robot;
location / {
proxy_pass http://127.0.0.1:8888/;
proxy_redirect http://127.0.0.1:8888/;
}
}
EOF