]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-apache.conf
- updated with scm and cli rules
[packages/eventum.git] / eventum-apache.conf
1 # vim:syn=apache
2
3 Alias /eventum /usr/share/eventum
4
5 # allow from localhost
6 <Location /eventum>
7         AllowOverride None
8         Order allow,deny
9         Allow from 127.0.0.1
10 </Location>
11
12 # or perhaps you want it to be password protected
13 #<Location /eventum>
14 #       AllowOverride None
15 #       Deny from all
16 #       AuthType Basic
17 #       AuthUserFile /etc/eventum/users
18 #       AuthGroupFile /etc/eventum/groups
19 #       AuthName "Eventum"
20 #       Require group eventum
21 #       Satisfy any
22 #</Location>
23
24 # for scm integration
25 #<Location /eventum/scm_ping.php>
26 #       AllowOverride None
27 #       Order allow,deny
28 #       # Set here IP of host running CVS
29 #       Allow from 127.0.0.1
30 #</Location>
31
32 # cli interface
33 #<Location /eventum/rpc>
34 #       AllowOverride None
35 #       Order allow,deny
36 #       # Add here clients whom you want to allow CLI access
37 #       Allow from 127.0.0.1
38 #</Location>
This page took 0.043169 seconds and 4 git commands to generate.