Made allowed hosts more open

pull/7/head
Ben Rometsch 4 years ago
parent 013ae6bcf5
commit 2a8a28d83a

@ -9,7 +9,7 @@ services:
api:
image: flagsmith/flagsmith-api:latest
environment:
DJANGO_ALLOWED_HOSTS: localhost
DJANGO_ALLOWED_HOSTS: "*" # Change this in production
DATABASE_URL: postgresql://postgres:password@db:5432/flagsmith
DJANGO_DB_HOST: db
DJANGO_DB_NAME: flagsmith
@ -26,8 +26,9 @@ services:
frontend:
image: flagsmith/flagsmith-frontend:latest
environment:
# You might need to change the 2 host names below depending on your docker dns setup
API_URL: http://localhost:8000/api/v1/
ASSET_URL: http://localhost:8080/
ASSET_URL: http://locahost:8080/
ports:
- "8080:8080"
links:

Loading…
Cancel
Save