]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-httpd.conf
up to 2.3.4
[packages/eventum.git] / eventum-httpd.conf
1 # Eventum is under /eventum
2 Alias /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.056276 seconds and 3 git commands to generate.