first prototype

hector (dev) -> raspen (rev proxy) -> agge (appserver: nextcloud, gitea,
postgre)
This commit is contained in:
2026-05-02 21:26:35 +02:00
commit 5e97218dc8
13 changed files with 458 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
nginx:
image: nginx:alpine
restart: unless-stopped
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./nginx/conf.d:/etc/nginx/conf.d:ro
- ./nginx/stream.d:/etc/nginx/stream.d:ro
- ./ssl:/etc/nginx/certs:ro
- ./html:/usr/share/nginx/html:ro
ports:
- "80:80"
- "443:443"
- "5432:5432"
networks:
- frontend
networks:
frontend:
driver: bridge