1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

Merge pull request #440 from seanmorley15/development

fix: configure secure session cookies and dynamic domain for frontend…
This commit is contained in:
Sean Morley 2025-01-13 17:53:07 -05:00 committed by GitHub
commit 145a3f00c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -128,6 +128,14 @@ USE_L10N = True
USE_TZ = True
SESSION_COOKIE_SAMESITE = None
SESSION_COOKIE_SECURE = getenv('FRONTEND_URL', 'http://localhost:3000').startswith('https://')
from urllib.parse import urlparse
frontend_url = getenv('FRONTEND_URL', 'http://localhost:3000')
parsed_url = urlparse(frontend_url)
domain_parts = parsed_url.hostname.split('.')
SESSION_COOKIE_DOMAIN = '.' + '.'.join(domain_parts[-2:]) if len(domain_parts) > 1 else parsed_url.hostname
print(SESSION_COOKIE_DOMAIN)
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/