Compare commits

...

2 commits

Author SHA1 Message Date
Jannis Portmann
a501f443c8 Get allowed hosts from env 2023-04-08 02:50:40 +02:00
Jannis Portmann
42617d70a0 Change port mapping 2023-04-08 02:50:29 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ services:
pflaenzli:
build: .
ports:
- 8080:80
- 8080:8888
environment:
DOCKER: True

View file

@ -32,8 +32,8 @@ SECRET_KEY = "django-insecure-q=ps#iypevr!3zfpwtfp3lw#4r3%oyj*(2=*iq^8f4_zbodi^(
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ["localhost"]
CSRF_TRUSTED_ORIGINS = ["http://localhost:8080", "https://staging.pflaenz.li"]
ALLOWED_HOSTS = os.getenv('DJANGO_ALLOWED_HOSTS')
CSRF_TRUSTED_ORIGINS = os.getenv('DJANGO_CSRF_TRUSTED_ORIGINS')
# Application definition