]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-apache.conf
- release 1
[packages/eventum.git] / eventum-apache.conf
index 3f3bd8b515c24661dff5249d4055c721fda1a54d..51c12bbdc52d27665e2c43f5ff16acbe8bdc1f94 100644 (file)
@@ -1,38 +1,51 @@
-# vim:syn=apache
+# $Id$
 
-Alias /eventum /usr/share/eventum
+# Eventum is under /eventum
+Alias /eventum /usr/share/eventum/htdocs
 
-# allow from localhost
-<Location /eventum>
+# Eventum is running under VirtualHost
+#NameVirtualHost *:80
+#<VirtualHost *:80>
+#      ServerName eventum.example.org
+#      DocumentRoot /usr/share/eventum/htdocs
+#</VirtualHost>
+#NameVirtualHost *:443
+#<VirtualHost *:443>
+#      ServerName eventum.example.org
+#      DocumentRoot /usr/share/eventum/htdocs
+#</VirtualHost>
+
+<Directory /usr/share/eventum/htdocs>
        AllowOverride None
-       Order allow,deny
-       Allow from 127.0.0.1
-</Location>
+       Order deny,allow
+       Allow from all
 
-# or perhaps you want it to be password protected
-#<Location /eventum>
+       # Make whole eventum password protected
 #      AllowOverride None
 #      Deny from all
 #      AuthType Basic
-#      AuthUserFile /etc/eventum/users
-#      AuthGroupFile /etc/eventum/groups
+#      AuthUserFile /etc/webapps/eventum/users
+#      AuthGroupFile /etc/webapps/eventum/groups
 #      AuthName "Eventum"
 #      Require group eventum
 #      Satisfy any
-#</Location>
 
-# for scm integration
-#<Location /eventum/scm_ping.php>
-#      AllowOverride None
-#      Order allow,deny
-#      # Set here IP of host running CVS
-#      Allow from 127.0.0.1
-#</Location>
+       # for SCM integration
+       <Files scm_ping.php>
+               Order allow,deny
+               # Set here IP of host running CVS
+               Allow from 127.0.0.1
+       </Files>
 
-# cli interface
-#<Location /eventum/rpc>
-#      AllowOverride None
-#      Order allow,deny
-#      # Add here clients whom you want to allow CLI access
-#      Allow from 127.0.0.1
-#</Location>
+       # rss has it's own authorization
+       <Files rss.php>
+               Allow from all
+       </Files>
+</Directory>
+
+# RPC for CLI interface
+<Directory /usr/share/eventum/htdocs/rpc>
+       Order allow,deny
+       # Add here clients whom you want to allow CLI access
+       Allow from 127.0.0.1
+</Directory>
This page took 0.069968 seconds and 4 git commands to generate.