| | |
| | | |
| | | ServerName {DOM_HOSTNAME} |
| | | ServerAlias *.{DOM_HOSTNAME} |
| | | ServerAdmin {DOM_USERNAME}@{HIVE}.hostsharing.net |
| | | ServerAdmin webmaster@{DOM_HOSTNAME} |
| | | |
| | | SuexecUserGroup {DOM_USERNAME} {PAC} |
| | | |
| | |
| | | AllowOverride AuthConfig FileInfo Indexes Limit |
| | | </Directory> |
| | | |
| | | <Location /cgi-bin/> |
| | | <Directory /home/doms/{DOM_HOSTNAME}/cgi-bin/> |
| | | SetHandler cgi-script |
| | | Options +ExecCGI -Indexes -MultiViews |
| | | </Location> |
| | | </Directory> |
| | | |
| | | <Location /fastcgi-bin/> |
| | | <Directory /home/doms/{DOM_HOSTNAME}/fastcgi-bin/> |
| | | SetHandler fcgid-script |
| | | Options +ExecCGI -Indexes -MultiViews |
| | | </Location> |
| | | </Directory> |
| | | |
| | | RewriteEngine On |
| | | RewriteOptions Inherit |
| | |
| | | RewriteCond %{HTTP_HOST} ^(.+)\.{DOM_HOSTNAME}\.?(:80)?$ [novary] |
| | | RewriteCond /home/doms/{DOM_HOSTNAME}/subs/${tolower:%1} -d |
| | | RewriteRule ^(.*) /home/doms/{DOM_HOSTNAME}/subs/${tolower:%1}$1 [last] |
| | | |
| | | <!-- BEGIN: iterate --> |
| | | RewriteCond %{REQUEST_URI} !^/cgi-bin/ |
| | | RewriteCond %{REQUEST_URI} !^/fastcgi-bin/ |
| | | RewriteCond %{HTTP_HOST} ^(.+)\.{DOM_HOSTNAME}\.?(:80)?$ [novary] |
| | | RewriteCond /home/doms/{DOM_HOSTNAME}/subs/${tolower:%1} !-d |
| | | RewriteRule ^(.*) - [redirect=404,last] |
| | | |
| | | <!-- END: iterate --> |
| | | AddType application/x-httpd-php .php .php5 .php4 .php3 |
| | | Action application/x-httpd-php /fastcgi-bin/phpstub |
| | |
| | | RewriteCond %{HTTP_HOST} ^(.+)\.{DOM_HOSTNAME}\.?(:443)?$ [novary] |
| | | RewriteCond /home/doms/{DOM_HOSTNAME}/subs-ssl/${tolower:%1} -d |
| | | RewriteRule ^(.*) /home/doms/{DOM_HOSTNAME}/subs-ssl/${tolower:%1}$1 [last] |
| | | |
| | | <!-- BEGIN: nosubdomainfallbackforhttps --> |
| | | RewriteCond %{REQUEST_URI} !^/cgi-bin/ |
| | | RewriteCond %{REQUEST_URI} !^/fastcgi-bin/ |
| | | RewriteCond %{HTTP_HOST} ^(.+)\.{DOM_HOSTNAME}\.?(:443)?$ [novary] |
| | | RewriteCond /home/doms/{DOM_HOSTNAME}/subs-ssl/${tolower:%1} !-d |
| | | RewriteRule ^(.*) - [redirect=404,last] |
| | | |
| | | <!-- END: nosubdomainfallbackforhttps --> |
| | | AddType application/x-httpd-php .php .php5 .php4 .php3 |
| | | Action application/x-httpd-php /fastcgi-bin/phpstub |