]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-apache.conf
package bin/extension.php
[packages/eventum.git] / eventum-apache.conf
index 51c12bbdc52d27665e2c43f5ff16acbe8bdc1f94..63dcb7c27abeff8d7be75fe1a822c03fa1522950 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-
 # Eventum is under /eventum
 Alias /eventum /usr/share/eventum/htdocs
 
@@ -17,8 +15,15 @@ Alias /eventum /usr/share/eventum/htdocs
 
 <Directory /usr/share/eventum/htdocs>
        AllowOverride None
-       Order deny,allow
-       Allow from all
+       # Apache < 2.4
+       <IfModule !mod_authz_core.c>
+               Order allow,deny
+               Allow from all
+       </IfModule>
+       # Apache 2.4
+       <IfModule mod_authz_core.c>
+               Require all granted
+       </IfModule>
 
        # Make whole eventum password protected
 #      AllowOverride None
@@ -32,20 +37,44 @@ Alias /eventum /usr/share/eventum/htdocs
 
        # for SCM integration
        <Files scm_ping.php>
-               Order allow,deny
-               # Set here IP of host running CVS
-               Allow from 127.0.0.1
+               # Apache < 2.4
+               <IfModule !mod_authz_core.c>
+                       Order allow,deny
+                       Allow from 127.0.0.1
+               </IfModule>
+               # Apache 2.4
+               <IfModule mod_authz_core.c>
+                       # SCM integration. Set here IP of host running CVS, SVN, Git
+                       Require local
+#                      Require ip xxx.xxx.xxx.xxx
+               </IfModule>
        </Files>
 
        # rss has it's own authorization
        <Files rss.php>
-               Allow from all
+               # Apache < 2.4
+               <IfModule !mod_authz_core.c>
+                       Order allow,deny
+                       Allow from all
+               </IfModule>
+               # Apache 2.4
+               <IfModule mod_authz_core.c>
+                       Require all granted
+               </IfModule>
        </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
+       # Apache < 2.4
+       <IfModule !mod_authz_core.c>
+               Order allow,deny
+               Allow from 127.0.0.1
+       </IfModule>
+       # Apache 2.4
+       <IfModule mod_authz_core.c>
+               Require local
+#              Require ip xxx.xxx.xxx.xxx
+       </IfModule>
 </Directory>
This page took 0.036966 seconds and 4 git commands to generate.