remove nginx

This commit is contained in:
2026-04-10 00:25:43 +02:00
parent 9223e4d35f
commit 8a96c0529f
6 changed files with 9 additions and 13 deletions
+3 -3
View File
@@ -777,13 +777,13 @@ services:
- DATABASE_URL=sqlite:///data/astronome.db
- RUST_LOG=info
ports:
- "3301:3301"
- "3010:3010"
frontend:
build: ./frontend
restart: unless-stopped
ports:
- "3300:80"
- "3000:80"
depends_on:
- backend
@@ -801,7 +801,7 @@ services:
```nginx
# nginx-conf.conf — reverse proxy, single origin for browser
upstream backend { server backend:3301; }
upstream backend { server backend:3010; }
upstream frontend { server frontend:80; }
server {