Magellan Linux

Contents of /alx-src/tags/alx-web-0_7_0_20170830_2/apache/alx-web.conf.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10656 - (show annotations) (download)
Wed Aug 30 14:48:43 2017 UTC (6 years, 9 months ago) by niro
File size: 568 byte(s)
tagged 'alx-web-0_7_0_20170830_2'
1 Alias /alx-web @@ALXWEBINSTALLDIR@@/
2 Alias /alx-web-070 @@ALXWEBINSTALLDIR@@/
3 Alias / @@ALXWEBINSTALLDIR@@/
4
5 <Directory @@ALXWEBINSTALLDIR@@/>
6 AddDefaultCharset UTF-8
7 DirectoryIndex index.php
8
9 Options Indexes FollowSymlinks MultiViews
10
11 # allow .htaccess file override
12 AllowOverride ALL
13
14 <IfModule mod_authz_core.c>
15 # Apache 2.4
16 <RequireAny>
17 Require ip 127.0.0.1
18 Require ip ::1
19 </RequireAny>
20 </IfModule>
21 <IfModule !mod_authz_core.c>
22 # Apache 2.2
23 Order Deny,Allow
24 Deny from All
25 Allow from 127.0.0.1
26 Allow from ::1
27 </IfModule>
28 </Directory>