chore: add commented http allowed variable

closes #346
This commit is contained in:
Emrik Östling 2025-07-27 11:00:41 +02:00 committed by GitHub
parent 8f93ac29dd
commit 394c98c65a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,6 +62,7 @@ services:
- "3000:3000" - "3000:3000"
environment: environment:
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
# - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
volumes: volumes:
- ./data:/app/data - ./data:/app/data
``` ```