Compare commits

..

2 Commits

Author SHA1 Message Date
Stefan Hacker c23205d2a6 feat: OnlyOffice in docker-compose aktiviert
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 21:43:37 +02:00
Stefan Hacker 67790af95e fix: OnlyOffice Port-Mapping 8080:80 in docker-compose ergaenzt
nginx braucht Zugriff auf den OnlyOffice-Container um ihn per
HTTPS nach aussen weiterzuleiten (proxy_pass http://127.0.0.1:8080).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 21:42:16 +02:00
+12 -9
View File
@@ -14,12 +14,15 @@ services:
# Braucht eine eigene Subdomain mit HTTPS (z.B. office.example.com) # Braucht eine eigene Subdomain mit HTTPS (z.B. office.example.com)
# Siehe nginx.example.conf und README.md fuer Setup-Anleitung # Siehe nginx.example.conf und README.md fuer Setup-Anleitung
# #
# onlyoffice: onlyoffice:
# image: onlyoffice/documentserver:latest image: onlyoffice/documentserver:latest
# environment: ports:
# - JWT_ENABLED=true - "8080:80"
# - JWT_SECRET=${ONLYOFFICE_JWT_SECRET} environment:
# volumes: - JWT_ENABLED=true
# - ./data/onlyoffice/logs:/var/log/onlyoffice - JWT_SECRET=${ONLYOFFICE_JWT_SECRET}
# - ./data/onlyoffice/data:/var/www/onlyoffice/Data volumes:
# restart: unless-stopped - ./data/onlyoffice/logs:/var/log/onlyoffice
- ./data/onlyoffice/data:/var/www/onlyoffice/Data
restart: unless-stopped