]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-apache.conf
- update configuration
[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
10 #       DocumentRoot /usr/share/eventum/htdocs
11 #</VirtualHost>
12 #NameVirtualHost *:443
13 #<VirtualHost *:443>
14 #       ServerName eventum
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         # for SCM integration
24         <Files scm_ping.php>
25                 AllowOverride None
26                 Order allow,deny
27                 # Set here IP of host running CVS
28                 Allow from 127.0.0.1
29         </Files>
30
31         # Make whole eventum password protected
32 #       AllowOverride None
33 #       Deny from all
34 #       AuthType Basic
35 #       AuthUserFile /etc/webapps/eventum/users
36 #       AuthGroupFile /etc/webapps/eventum/groups
37 #       AuthName "Eventum"
38 #       Require group eventum
39 #       Satisfy any
40 </Directory>
41
42 # RPC for CLI interface
43 <Directory /usr/share/eventum/htdocs/rpc>
44         Order allow,deny
45         # Add here clients whom you want to allow CLI access
46         Allow from 127.0.0.1
47 </Directory>
This page took 0.244949 seconds and 4 git commands to generate.