Title: [237897] trunk/Tools
Revision
237897
Author
aakash_j...@apple.com
Date
2018-11-06 15:24:12 -0800 (Tue, 06 Nov 2018)

Log Message

[ews-app] Fix Invalid HTTP_HOST header
https://bugs.webkit.org/show_bug.cgi?id=191325

Reviewed by Lucas Forschler.

Changing ALLOWED_HOSTS to * as the landing page should be publicly accessible.

* BuildSlaveSupport/ews-app/ews-app/settings.py:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-app/ews-app/settings.py (237896 => 237897)


--- trunk/Tools/BuildSlaveSupport/ews-app/ews-app/settings.py	2018-11-06 23:16:38 UTC (rev 237896)
+++ trunk/Tools/BuildSlaveSupport/ews-app/ews-app/settings.py	2018-11-06 23:24:12 UTC (rev 237897)
@@ -46,7 +46,7 @@
 # SECURITY WARNING: don't run with debug turned on in production!
 DEBUG = True
 
-ALLOWED_HOSTS = []
+ALLOWED_HOSTS = ['*']
 
 
 # Application definition

Modified: trunk/Tools/ChangeLog (237896 => 237897)


--- trunk/Tools/ChangeLog	2018-11-06 23:16:38 UTC (rev 237896)
+++ trunk/Tools/ChangeLog	2018-11-06 23:24:12 UTC (rev 237897)
@@ -1,5 +1,16 @@
 2018-11-06  Aakash Jain  <aakash_j...@apple.com>
 
+        [ews-app] Fix Invalid HTTP_HOST header
+        https://bugs.webkit.org/show_bug.cgi?id=191325
+
+        Reviewed by Lucas Forschler.
+
+        Changing ALLOWED_HOSTS to * as the landing page should be publicly accessible.
+
+        * BuildSlaveSupport/ews-app/ews-app/settings.py:
+
+2018-11-06  Aakash Jain  <aakash_j...@apple.com>
+
         [ews-app] Rename EWS_app to ews-app - part 2
         https://bugs.webkit.org/show_bug.cgi?id=191317
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to