The reverse proxy header configuration is incorrect
aronmgv opened this issue · 1 comments
aronmgv commented
Hi,
I am seeing this message in my overview:
The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy.
Wanted to ask what could be causing this sort of warning.. didnt appear before, just recently noticed.
My docker-compose file for nextcloud service (using traefik):
nextcloud:
container_name: nextcloud.524
image: crazymax/nextcloud:latest
restart: always
depends_on:
- postgres
- redis
volumes:
- "$PWD/nextcloud:/data"
- "/lvm/raid/private/backups/:/mnt/private/backups"
- "/lvm/raid/private/data/:/mnt/private/data"
- "/lvm/raid/private/drive/:/mnt/private/drive"
- "/lvm/raid/private/media/:/mnt/private/media"
- "/lvm/raid/public/backups/:/mnt/public/backups"
- "/lvm/raid/public/drive/:/mnt/public/drive"
- "/lvm/raid/public/ftp/:/mnt/public/ftp"
#- "/lvm/raid/public/nextcloud/data/:/data/data"
labels:
- "com.ouroboros.enable=true"
- "traefik.enable=true"
- "traefik.port=8000"
- "traefik.frontend.entryPoints=https"
- "traefik.frontend.rule=Host:cloud.example.com"
- "traefik.frontend.redirect.permanent=true"
- "traefik.frontend.redirect.regex=https://(.*)/.well-known/(card|cal)dav"
- "traefik.frontend.redirect.replacement=https://$$1/remote.php/dav/"
- "traefik.backend=nextcloud.524"
- "traefik.frontend.headers.forceSTSHeader=true"
- "traefik.frontend.headers.STSSeconds=315360000"
- "traefik.frontend.headers.STSIncludeSubdomains=true"
- "traefik.frontend.headers.STSPreload=true"
environment:
- PUID=1000
- PGID=994
- USERID=1000
env_file:
- "./nextcloud.env"
Thanks, Michal