|
Revision 1949, 1.3 kB
(checked in by anarcat, 1 year ago)
|
remove duplicate icons alias, move non-bureau alternc conf to alternc.conf so that the bureau can be safely disabled by commenting out the bureau include in alternc.conf
|
| Line | |
|---|
| 1 |
# This module is loaded in /etc/apache/modules, and enabled by apache-modconf |
|---|
| 2 |
# LoadModule vhost_alias_module /usr/lib/apache/1.3/mod_vhost_alias.so |
|---|
| 3 |
|
|---|
| 4 |
ScriptAlias /cgi-bin/ /var/alternc/cgi-bin/ |
|---|
| 5 |
|
|---|
| 6 |
<Directory /var/alternc/cgi-bin/> |
|---|
| 7 |
Options FollowSymLinks IncludesNOEXEC ExecCGI |
|---|
| 8 |
AllowOverride None |
|---|
| 9 |
Order allow,deny |
|---|
| 10 |
Allow from all |
|---|
| 11 |
AddHandler cgi-script .cgi |
|---|
| 12 |
</Directory> |
|---|
| 13 |
|
|---|
| 14 |
<VirtualHost *:80> |
|---|
| 15 |
# ***ALTERNC_ALIASES*** |
|---|
| 16 |
Alias /icons/ /usr/share/apache/icons/ |
|---|
| 17 |
|
|---|
| 18 |
UseCanonicalName Off |
|---|
| 19 |
VirtualDocumentRoot /var/alternc/dns/%-2.1/%0 |
|---|
| 20 |
|
|---|
| 21 |
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %T %{Host}i" alternc |
|---|
| 22 |
CustomLog /var/log/apache/access.log alternc |
|---|
| 23 |
</VirtualHost> |
|---|
| 24 |
|
|---|
| 25 |
<Directory /var/alternc> |
|---|
| 26 |
AllowOverride AuthConfig FileInfo |
|---|
| 27 |
Options Indexes Includes FollowSymLinks MultiViews |
|---|
| 28 |
Order allow,deny |
|---|
| 29 |
Allow from all |
|---|
| 30 |
php_admin_flag safe_mode_gid on |
|---|
| 31 |
php_admin_flag safe_mode on |
|---|
| 32 |
php_admin_value disable_functions chmod,chown,chgrp,link,symlink |
|---|
| 33 |
php_admin_value safe_mode_exec_dir /var/alternc/exec.usr |
|---|
| 34 |
php_admin_value disable_functions chgrp,link,symlink |
|---|
| 35 |
|
|---|
| 36 |
php_admin_flag enable_dl off |
|---|
| 37 |
php_admin_value upload_tmp_dir /var/alternc/tmp |
|---|
| 38 |
php_admin_value sendmail_path /usr/lib/alternc/sendmail |
|---|
| 39 |
</Directory> |
|---|
| 40 |
|
|---|
| 41 |
Include /etc/alternc/bureau.conf |
|---|