]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-apache.conf
- fix upgrade dir
[packages/eventum.git] / eventum-apache.conf
1 # $Id$
2
3 # Eventum is under /eventum
4 Alias /eventum /usr/share/eventum/htdocs
5
6 # Eventum is running under VirtualHost
7 #NameVirtualHost *:80
8 #<VirtualHost *:80>
9 #       ServerName eventum.example.org
10 #       DocumentRoot /usr/share/eventum/htdocs
11 #</VirtualHost>
12 #NameVirtualHost *:443
13 #<VirtualHost *:443>
14 #       ServerName eventum.example.org
15 #       DocumentRoot /usr/share/eventum/htdocs
16 #</VirtualHost>
17
18 <Directory /usr/share/eventum/htdocs>
19         AllowOverride None
20         Order deny,allow
21         Allow from all
22
23         # Make whole eventum password protected
24 #       AllowOverride None
25 #       Deny from all
26 #       AuthType Basic
27 #       AuthUserFile /etc/webapps/eventum/users
28 #       AuthGroupFile /etc/webapps/eventum/groups
29 #       AuthName "Eventum"
30 #       Require group eventum
31 #       Satisfy any
32
33         # for SCM integration
34         <Files scm_ping.php>
35                 Order allow,deny
36                 # Set here IP of host running CVS
37                 Allow from 127.0.0.1
38         </Files>
39
40         # rss has it's own authorization
41         <Files rss.php>
42                 Allow from all
43         </Files>
44 </Directory>
45
46 # RPC for CLI interface
47 <Directory /usr/share/eventum/htdocs/rpc>
48         Order allow,deny
49         # Add here clients whom you want to allow CLI access
50         Allow from 127.0.0.1
51 </Directory>
This page took 0.043814 seconds and 3 git commands to generate.