fix dynamic web issue on vhost template

This commit is contained in:
Peter Hormanns 2013-05-10 11:24:12 +02:00
parent a1a8241909
commit 9d22db1623
2 changed files with 7 additions and 7 deletions

View File

@ -271,7 +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);
templateVars.put("dynamicWeb", new Boolean(dom.isDynamic()));
String domName = dom.getName();
int level = domName.split("\\.").length;
String linkPrefix = Integer.toString(100 - level);

View File

@ -13,7 +13,7 @@
DocumentRoot /home/doms/${dom.name}/htdocs
#if( ${dom.isDynamic} )
#if( ${dynamicWeb} )
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( ${dynamicWeb} )
<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( ${dynamicWeb} )
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( ${dom.isDynamic} )
#if( ${dynamicWeb} )
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( ${dom.isDynamic} )
#if( ${dynamicWeb} )
<Location /cgi-bin/>
SetHandler cgi-script
Options +ExecCGI ${includes} -Indexes -MultiViews +SymLinksIfOwnerMatch
@ -137,7 +137,7 @@
RewriteRule ^(.*) - [redirect=404,last]
#end
#if( ${dom.isDynamic} )
#if( ${dynamicWeb} )
AddType application/x-httpd-php .php .php5 .php4 .php3
Action application/x-httpd-php /fastcgi-bin/phpstub
#end