auto backup 2026-04-20_23:19:21
This commit is contained in:
@@ -28,3 +28,5 @@ nextcloud-aio-data/
|
||||
|
||||
# ===== CAS SPÉCIAL =====
|
||||
18_openclaw/config/agents/
|
||||
21_openproject/
|
||||
21_openproject/
|
||||
|
||||
@@ -19,6 +19,9 @@ services:
|
||||
- DOCKER_SECURITY_OPTS=apparmor=unconfined
|
||||
- SKIP_DOMAIN_VALIDATION=true
|
||||
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
||||
networks:
|
||||
tan-network:
|
||||
ipv4_address: 10.10.0.80
|
||||
|
||||
@@ -4,7 +4,7 @@ services:
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
- /opt/stacks/00_store/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
- /opt/stacks/20_store/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
|
||||
networks:
|
||||
- tan-network
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
proxy_pass https://192.168.0.6:5001;
|
||||
proxy_ssl_verify off;
|
||||
|
||||
proxy_set_header Host 192.168.0.6;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Port 443;
|
||||
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
|
||||
proxy_read_timeout 3600;
|
||||
proxy_send_timeout 3600;
|
||||
|
||||
proxy_redirect off;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
changedetection:
|
||||
image: ghcr.io/dgtlmoon/changedetection.io:latest
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
- /home/docker/DenWatch:/datastore
|
||||
|
||||
networks:
|
||||
- tan-network
|
||||
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
|
||||
- traefik.http.routers.DenWatch.rule=Host(`watch.luckyden.org`)
|
||||
- traefik.http.routers.DenWatch.entrypoints=websecure
|
||||
- traefik.http.routers.DenWatch.tls=true
|
||||
|
||||
- traefik.http.services.DenWatch.loadbalancer.server.port=5000
|
||||
|
||||
networks:
|
||||
tan-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user