Advertisement
AdmiralNemo

hgwebdir-apache

Jun 21st, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <IfDefine HG>
  2.  
  3. <Directory /srv/localhost/hg>
  4. Order allow,deny
  5. Allow from All
  6. </Directory>
  7.  
  8. WSGIDaemonProcess mercurial group=nobody display-name=%{GROUP}
  9. WSGIScriptAlias /hg /srv/localhost/hg/hgwebdir.wsgi process-group=mercurial
  10.  
  11. <Location /hg>
  12. <LimitExcept GET>
  13. AuthType Basic
  14. AuthName "Mercurial Repositories"
  15. AuthBasicProvider pam
  16. Require user dustin
  17. </LimitExcept>
  18. </Location>
  19.  
  20. </IfDefine>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement