]> git.pld-linux.org Git - packages/ckfinder.git/blob - apache.conf
up to 2.4.2
[packages/ckfinder.git] / apache.conf
1 Alias /ckfinder/userfiles/ /var/lib/ckfinder/
2 Alias /ckfinder/ /usr/share/ckfinder/
3
4 <Directory /usr/share/ckfinder>
5         <IfModule mod_authz_core.c>
6                 # Apache 2.4
7                 Require all granted
8         </IfModule>
9         <IfModule !mod_authz_core.c>
10                 Order allow,deny
11                 Allow from all
12         </IfModule>
13 </Directory>
14
15 <Directory /var/lib/ckfinder>
16         <IfModule mod_authz_core.c>
17                 # Apache 2.4
18                 Require all granted
19         </IfModule>
20         <IfModule !mod_authz_core.c>
21                 Order allow,deny
22                 Allow from all
23         </IfModule>
24         <IfModule mod_php5.c>
25                 php_value engine off
26         </IfModule>
27         <IfModule mod_php4.c>
28                 php_value engine off
29         </IfModule>
30 </Directory>
This page took 0.05824 seconds and 3 git commands to generate.