-
Notifications
You must be signed in to change notification settings - Fork 1
/
cake.conf
27 lines (22 loc) · 887 Bytes
/
cake.conf
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
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
<VirtualHost *:80>
ServerName mysite.com
#ServerAlias www.yourdomain
DocumentRoot /home/skip/cake/
<Directory /home/skip/cake/>
Options FollowSymLinks
AllowOverride All
</Directory>
CustomLog /var/log/apache2/cake-access.log combined
ErrorLog /var/log/apache2/cake-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
<FilesMatch \"\.(cgi|shtml|phtml|php)$\">
#SSLOptions +StdEnvVars
</FilesMatch>
BrowserMatch \"MSIE [2-6]\" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
BrowserMatch \"MSIE [17-9]\" ssl-unclean-shutdown
</VirtualHost>