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