commit | author | age
|
c9b9f2
|
1 |
|
T |
2 |
###################################################### |
|
3 |
# This virtual host contains the configuration |
|
4 |
# for the ISPConfig apps vhost |
|
5 |
###################################################### |
|
6 |
|
|
7 |
{vhost_port_listen} Listen {apps_vhost_port} |
9e3e9a
|
8 |
# NameVirtualHost *:{apps_vhost_port} |
c9b9f2
|
9 |
|
T |
10 |
<VirtualHost {apps_vhost_ip}:{apps_vhost_port}> |
|
11 |
ServerAdmin webmaster@localhost |
|
12 |
{apps_vhost_servername} |
|
13 |
|
|
14 |
<IfModule mod_fcgid.c> |
|
15 |
DocumentRoot {apps_vhost_dir} |
|
16 |
SuexecUserGroup ispapps ispapps |
|
17 |
<Directory {apps_vhost_dir}> |
|
18 |
Options Indexes FollowSymLinks MultiViews +ExecCGI |
|
19 |
AllowOverride AuthConfig Indexes Limit Options FileInfo |
|
20 |
AddHandler fcgid-script .php |
fdb514
|
21 |
FCGIWrapper {apps_vhost_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php |
c9b9f2
|
22 |
Order allow,deny |
T |
23 |
Allow from all |
|
24 |
</Directory> |
|
25 |
</IfModule> |
|
26 |
|
|
27 |
<IfModule mod_php5.c> |
|
28 |
DocumentRoot {apps_vhost_dir} |
|
29 |
AddType application/x-httpd-php .php |
|
30 |
<Directory {apps_vhost_dir}> |
|
31 |
Options FollowSymLinks |
|
32 |
AllowOverride None |
|
33 |
Order allow,deny |
|
34 |
Allow from all |
|
35 |
</Directory> |
|
36 |
</IfModule> |
|
37 |
|
|
38 |
ServerSignature Off |
|
39 |
|
|
40 |
</VirtualHost> |
|
41 |
|
|
42 |
|