feat: add SECURE_SITE environment variable to Docker Compose files

- Introduced SECURE_SITE variable in all Docker Compose files to allow configuration for reverse proxy usage.
- This addition enhances flexibility for deployment scenarios where a reverse proxy is utilized, improving security configurations.
This commit is contained in:
Daniel Luiz Alves
2025-06-30 11:53:29 -03:00
parent 9e1c6c0e9a
commit 48019df81a
5 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ services:
- "3333:3333" # API port (OPTIONAL EXPOSED - ONLY IF YOU WANT TO ACCESS THE API DIRECTLY)
- PALMR_UID=1000 # UID for the container processes (default is 1001)
- PALMR_GID=1000 # GID for the container processes (default is 1001)
- SECURE_SITE=false # Set to true if you are using a reverse proxy
volumes:
- palmr_data:/app/server # Volume for the application data (changed from /data to /app/server)
restart: unless-stopped # Restart the container unless it is stopped