From 41e5e8ea00354da153193fd36c3eda8d26740c45 Mon Sep 17 00:00:00 2001 From: "jessdtate@gmail.com" Date: Fri, 28 Jun 2024 12:17:12 -0600 Subject: [PATCH] adding heroku to allowed hosts --- shapeworks_cloud/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapeworks_cloud/settings.py b/shapeworks_cloud/settings.py index 2612ab59..25370ad5 100644 --- a/shapeworks_cloud/settings.py +++ b/shapeworks_cloud/settings.py @@ -63,5 +63,5 @@ class ProductionConfiguration(ShapeworksCloudMixin, ProductionBaseConfiguration) class HerokuProductionConfiguration(ShapeworksCloudMixin, HerokuProductionBaseConfiguration): - ALLOWED_HOSTS = ['shapeworks-cloud.herokuapp.com', 'app.shapeworks-cloud.org'] + ALLOWED_HOSTS = ['shapeworks-cloud.herokuapp.com', 'herokuapp.com', 'app.shapeworks-cloud.org'] LOGIN_REDIRECT_URL = 'https://www.shapeworks-cloud.org'