Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2.  
  3. #-- WWSYMPA begin
  4. # DO NOT REMOVE SURROUNDING COMMENTS
  5.  
  6. # If you want to change the FastCGI configuration, please do not
  7. # edit this portion of httpd.conf directly.
  8.  
  9. # Instead, please put your WWSympa CGI specific configuration
  10. # into file /etc/sympa/httpd.conf-fcgi
  11. # and then run `dpkg-reconfigure -plow sympa'
  12.  
  13. <IfModule mod_fastcgi.c>
  14. AddHandler fastcgi-script .fcg .fcgi .fpl
  15.  
  16. FastCgiServer /usr/lib/cgi-bin/sympa/wwsympa.fcgi -processes 2
  17.  
  18. <Location /wws>
  19. AuthType Basic
  20. AuthName "Password Required"
  21. AuthUserFile /etc/sympa/.htpasswd
  22. Require valid-user
  23. Order deny,allow
  24. SetHandler fastcgi-script
  25. </Location>
  26.  
  27. <LocationMatch "/wws*" >
  28. AuthType Basic
  29. AuthName "Password Required"
  30. AuthUserFile /etc/sympa/.htpasswd
  31. Order deny,allow
  32. Require valid-user
  33. </LocationMatch>
  34.  
  35. ScriptAlias /wws /usr/lib/cgi-bin/sympa/wwsympa.fcgi
  36. </IfModule>
  37.  
  38. #-- WWSYMPA end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement