update nginx compose

This commit is contained in:
2026-06-01 13:24:26 +02:00
parent 39e6d58e18
commit a8ef68fee6
4 changed files with 22 additions and 9 deletions

View File

@@ -1,4 +1,11 @@
services:
f0ckm:
environment:
- VIRTUAL_HOST=${VIRTUAL_HOST:-localhost}
- VIRTUAL_PORT=1337
- LETSENCRYPT_HOST=${LETSENCRYPT_HOST:-}
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL:-}
nginx-proxy:
image: nginxproxy/nginx-proxy:latest
container_name: f0ckm-nginx-proxy
@@ -10,6 +17,7 @@ services:
- certs:/etc/nginx/certs:rw
- vhost:/etc/nginx/vhost.d:rw
- html:/usr/share/nginx/html:rw
- ./config/nginx/f0ck.conf:/etc/nginx/conf.d/f0ckm.conf:ro
networks:
- f0ckm-net
restart: unless-stopped