-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpd.conf.sample
41 lines (35 loc) · 995 Bytes
/
httpd.conf.sample
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
33
34
35
36
37
38
39
40
41
ServerRoot "/etc/httpd"
<Directory />
AllowOverride none
Require all denied
</Directory>
DocumentRoot "/vagrant/public"
<Directory "/vagrant/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<VirtualHost *:80>
ServerName localhost
DocumentRoot /vagrant/public
ErrorLog /vagrant/apache.error.log
CustomLog /vagrant/apache.access.log common
LogLevel warn
ServerSignature Off
<Directory /vagrant/public>
Options +FollowSymLinks
Options -ExecCGI -Includes -Indexes
AllowOverride all
Require all granted
<IfModule mod_php5.c>
php_value upload_max_filesize 8M
php_value max_execution_time 60
php_value date.timezone Europe/Bratislava
php_flag phar.readonly off
</IfModule>
</Directory>
# SilverStripe specific
<LocationMatch assets/>
php_flag engine off
</LocationMatch>
</VirtualHost>