Merge pull request #52 from WardPearce/fix/guide-ports

Fixed reverse proxy ports
This commit is contained in:
Ward
2024-04-05 10:57:02 +13:00
committed by GitHub
+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;
}
}
```