From 24970e7c1e4a3b7165c8b521a5e47f4e38f495b8 Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Thu, 6 Mar 2014 11:51:45 -0800 Subject: [PATCH] Added Authorization Header flag to storyboard module We can't log into storyboard right now because we never told wsgi to forward the Authorization header. This fixes that. For more information: https://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIPassAuthorization Change-Id: Ibf8fb17569e7bb249801a8bd6971d0aa0f3ecaac --- modules/storyboard/templates/storyboard.vhost.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/storyboard/templates/storyboard.vhost.erb b/modules/storyboard/templates/storyboard.vhost.erb index fd656253c8..73f076e65e 100644 --- a/modules/storyboard/templates/storyboard.vhost.erb +++ b/modules/storyboard/templates/storyboard.vhost.erb @@ -5,6 +5,7 @@ WSGIDaemonProcess storyboard user=storyboard group=storyboard threads=5 python-path=/usr/local/lib/python2.7/dist-packages WSGIScriptAlias /api /usr/local/lib/python2.7/dist-packages/storyboard/api/app.wsgi + WSGIPassAuthorization On # The app.wsgi file has to be accessible by apache. It won't # be visible to clients because of the DocumentRoot though.