-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path003-glial.conf
executable file
·69 lines (54 loc) · 2.24 KB
/
003-glial.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Alias /project_name /data/www/photobox/application/webroot
<VirtualHost *:80>
DocumentRoot /data/www/photobox/application/webroot
ServerName dba-tools.photobox.com
ServerAdmin [email protected]
<Directory /data/www/photobox>
Order Allow,Deny
AllowOverride None
Allow from all
</Directory>
<Directory /data/www/photobox/application/webroot>
Order Allow,Deny
Allow from all
Options +FollowSymlinks
Options -Indexes
AllowOverride None
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?glial_path=$1 [QSA,L]
</IfModule>
</Directory>
<Directory /data/www/photobox/tmp>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
<Directory /data/www/photobox/application/webroot/image>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
<Directory /data/www/photobox/application/webroot/js>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
<Directory /data/www/photobox/application/webroot/file>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
<Directory /data/www/photobox/application/webroot/video>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
<Directory /data/www/photobox/application/webroot/css>
RemoveHandler .php .phtml .php3
RemoveType .php .phtml .php3
php_flag engine off
</Directory>
</VirtualHost>