chore(config): update ALLOWED_HOSTS with new sslip.io domain

- Replace old sslip.io subdomain with new one (r0g84wkoc4cwoo0gckss88ow)
- Remove redundant IP address entries (72.61.138.80, 127.0.0.1)
- Keep localhost for local development

This updates the Django allowed hosts configuration to use the new
SSL.io subdomain while simplifying the host list by removing
redundant entries already covered by localhost.
This commit is contained in:
saani 2025-11-23 17:11:35 +00:00
parent 1da5cd76e5
commit 9a84e253f1

View File

@ -12,10 +12,8 @@ SECRET_KEY = os.getenv('JWT_SECRET', 'django-insecure-fallback-secret-key')
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
ALLOWED_HOSTS = [
'bocwoswwgks0gc8c84sgwkso.72.61.138.80.sslip.io',
'72.61.138.80',
'http://r0g84wkoc4cwoo0gckss88ow.72.61.138.80.sslip.io',
'localhost',
'127.0.0.1',
]