Skip to content

Commit

Permalink
Merge pull request #342 from inbo/fix-url-settings
Browse files Browse the repository at this point in the history
fix url settings
  • Loading branch information
mainlyIt authored Feb 5, 2025
2 parents cc304e3 + 80b3802 commit 44e60f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vespadb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

secrets = {
"DJANGO_SECRET_KEY": os.getenv("SECRET_KEY"),
"CORS_ALLOWED_ORIGINS": os.getenv("CORS_ALLOWED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be" "https://uat-db.vespawatch.be",],
"CORS_ALLOWED_ORIGINS": os.getenv("CORS_ALLOWED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be","https://uat-db.vespawatch.be",],
"CSRF_TRUSTED_ORIGINS": os.getenv("CSRF_TRUSTED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be","https://uat-db.vespawatch.be",],
"CSRF_COOKIE_DOMAIN": os.getenv("CSRF_COOKIE_DOMAIN", ".vespawatch.be"),
"SESSION_COOKIE_DOMAIN": os.getenv("SESSION_COOKIE_DOMAIN", ".vespawatch.be"),
Expand Down

0 comments on commit 44e60f9

Please sign in to comment.