Magellan Linux

Annotation of /trunk/viewvc/viewvc_module-mod_wsgi.conf

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2780 - (hide annotations) (download)
Thu May 12 12:14:22 2016 UTC (8 years ago) by niro
File size: 477 byte(s)
-added wsgi module
1 niro 2780 # ViewVC configuration directives for apache
2    
3     WSGIScriptAlias /viewvc /usr/share/viewvc/bin/wsgi/viewvc.wsgi
4     #WSGIScriptAlias /query /usr/share/viewvc/bin/wsgi/query.wsgi
5    
6     <Directory /usr/share/viewvc>
7     Options FollowSymLinks MultiViews
8     AllowOverride None
9    
10     <IfModule mod_authz_core.c>
11     # Apache 2.4
12     <RequireAny>
13     Require all granted
14     </RequireAny>
15     </IfModule>
16     <IfModule !mod_authz_core.c>
17     # Apache 2.2
18     Order Deny,Allow
19     Allow from all
20     </IfModule>
21    
22     </Directory>