fix error on dynmic web domain vhosts
This commit is contained in:
parent
855ab2551a
commit
d63deeceae
@ -271,6 +271,7 @@ public class DomainProcessorFactory implements EntityProcessorFactory {
|
||||
|
||||
private Processor createApacheVHostSetupProcessor(EntityManager em, Domain dom) throws ProcessorException {
|
||||
Map<String, Object> templateVars = new HashMap<String, Object>();
|
||||
templateVars.put("dom", dom);
|
||||
String domName = dom.getName();
|
||||
int level = domName.split("\\.").length;
|
||||
String linkPrefix = Integer.toString(100 - level);
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
DocumentRoot /home/doms/${dom.name}/htdocs
|
||||
|
||||
#if( ${dom.isDynamic} )
|
||||
#if( ${dom.dynamic} )
|
||||
Alias /cgi-bin/ /home/doms/${dom.name}/cgi/
|
||||
Alias /fastcgi-bin/ /home/doms/${dom.name}/fastcgi/
|
||||
#end
|
||||
@ -26,7 +26,7 @@
|
||||
AllowOverride AuthConfig FileInfo Indexes Limit
|
||||
</Directory>
|
||||
|
||||
#if( ${dom.isDynamic} )
|
||||
#if( ${dom.dynamic} )
|
||||
<Location /cgi-bin/>
|
||||
SetHandler cgi-script
|
||||
Options +ExecCGI ${includes} -Indexes -MultiViews +SymLinksIfOwnerMatch
|
||||
@ -63,7 +63,7 @@
|
||||
RewriteRule ^(.*) - [redirect=404,last]
|
||||
#end
|
||||
|
||||
#if( ${dom.isDynamic} )
|
||||
#if( ${dom.dynamic} )
|
||||
AddType application/x-httpd-php .php .php5 .php4 .php3
|
||||
Action application/x-httpd-php /fastcgi-bin/phpstub
|
||||
#end
|
||||
@ -86,7 +86,7 @@
|
||||
|
||||
DocumentRoot /home/doms/${dom.name}/htdocs-ssl
|
||||
|
||||
#if( ${pac.dynamicWeb} || ${dom.pacDomain} )
|
||||
#if( ${dom.dynamic} )
|
||||
Alias /cgi-bin/ /home/doms/${dom.name}/cgi-ssl/
|
||||
Alias /fastcgi-bin/ /home/doms/${dom.name}/fastcgi-ssl/
|
||||
#end
|
||||
@ -100,7 +100,7 @@
|
||||
AllowOverride AuthConfig FileInfo Indexes Limit
|
||||
</Directory>
|
||||
|
||||
#if( ${pac.dynamicWeb} || ${dom.pacDomain} )
|
||||
#if( ${dom.dynamic} )
|
||||
<Location /cgi-bin/>
|
||||
SetHandler cgi-script
|
||||
Options +ExecCGI ${includes} -Indexes -MultiViews +SymLinksIfOwnerMatch
|
||||
@ -137,7 +137,7 @@
|
||||
RewriteRule ^(.*) - [redirect=404,last]
|
||||
#end
|
||||
|
||||
#if( ${pac.dynamicWeb} || ${dom.pacDomain} )
|
||||
#if( ${dom.dynamic} )
|
||||
AddType application/x-httpd-php .php .php5 .php4 .php3
|
||||
Action application/x-httpd-php /fastcgi-bin/phpstub
|
||||
#end
|
||||
|
Loading…
Reference in New Issue
Block a user