Skip to content

Commit

Permalink
fix: fix incorrect ALLOWED_HOSTS value
Browse files Browse the repository at this point in the history
The parsed host list was ['"localhost', '127.0.0.1"']
  • Loading branch information
raphael0202 committed Oct 30, 2024
1 parent 506bc4a commit 2f82256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DEBUG=True

TAG=latest

ALLOWED_HOSTS="localhost,127.0.0.1"
ALLOWED_HOSTS=localhost,127.0.0.1

API_PORT=127.0.0.1:8000

Expand Down

0 comments on commit 2f82256

Please sign in to comment.