Skip to content

Commit

Permalink
fix: allowed_hosts 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yjoonjang committed Mar 31, 2024
1 parent 2f27261 commit 0c015e6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions resumai/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = f"{os.environ.get('DJANGO_SECURE_KEY')}"
# ALLOWED_HOSTS = ["127.0.0.1", "api.resumai.kr", "resumai.kr"]
ALLOWED_HOSTS = ["*"]
ALLOWED_HOSTS = ["127.0.0.1", "*.resumai.kr", "resumai.kr", "localhost:3000"]

# Application definition

Expand Down

0 comments on commit 0c015e6

Please sign in to comment.