Fixed reverse proxy ports

This commit is contained in:
Ward
2024-04-05 10:56:21 +13:00
committed by GitHub
parent 501ec6dc5a
commit 5da47514f7
+2 -2
View File
@@ -58,7 +58,7 @@ invidious.example.com {
}
materialious.example.com {
reverse_proxy localhost:5173
reverse_proxy localhost:3001
}
```
@@ -88,7 +88,7 @@ server {
server_name materialious.example.com;
location / {
proxy_pass http://localhost:5173;
proxy_pass http://localhost:3001;
}
}
```