-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault
More file actions
33 lines (28 loc) · 762 Bytes
/
default
File metadata and controls
33 lines (28 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<VirtualHost *:80>
DocumentRoot /var/www
Options -Indexes +FollowSymLinks
RewriteEngine On
AddHandler php5-script .php
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog /proc/self/fd/1
# Possible values: debug, info, notice, warn, error, crit, alert, emerg.
LogLevel warn
# CustomLog /proc/self/fd/1 combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>