← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:fix-local-wsgi-application-group into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:fix-local-wsgi-application-group into launchpad:master.

Commit message:
Fix WSGI application group for local development

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/401611

Following https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/400811, the application group name for the private PPA authenticator used by a local development instance should be a valid config name, so "development" makes more sense than "lp".
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:fix-local-wsgi-application-group into launchpad:master.
diff --git a/configs/development/local-launchpad-apache b/configs/development/local-launchpad-apache
index f15d1fb..4bc3362 100644
--- a/configs/development/local-launchpad-apache
+++ b/configs/development/local-launchpad-apache
@@ -174,7 +174,7 @@
     AuthType Basic
     AuthName "Token Required"
     AuthBasicProvider wsgi
-    WSGIAuthUserScript %WSGI_ARCHIVE_AUTH% application-group=lp
+    WSGIAuthUserScript %WSGI_ARCHIVE_AUTH% application-group=development
   </Directory>
 </VirtualHost>