ISPconfig 3 /ispconfig oder ispconfig.domain.de

limbotec

New Member
Hallo,

wie der Titel schon sagt suche ich eine Lösung für ISPConfig 3.

Da in den meisten Firmennetzwerken die Ports 8080 oder 81 gesperrt sind, möchte ich das Webinterface über ispconfig.domain.tld oder über www.domain.tld/ispconfig/ aufrufen können.

Folgendes hat mir nicht geholfen per mod_proxy:
ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass / http://ispconfig.domain.tld:8080/
ProxyPassReverse / http://ispconfig.domain.tld:8080/
oder per httpd.conf

<VirtualHost *>
ServerName ispconfig.domain.tld
DocumentRoot /var/www/
ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass / http://ispconfig.domain.tld:8080/
ProxyPassReverse / http://ispconfig.domain.tld:8080/
</VirtualHost>
Mein ISPConfig Verzeichnis liegt in:
/usr/local/ispconfig/interface/web

Ich verwende Debian Squeeze (Apache2, PHP5, MySQL) und ISPConfig 3


Jemand eine Lösung für beide oder eins meiner Probleme? ;)
 

nowayback

Well-Known Member
ungetestet:

Code:
<VirtualHost IP:80>
    ServerName ispconfig.example.com
  
  <FilesMatch "\.ph(p3?|tml)$">
    SetHandler None
  </FilesMatch>
  
  <IfModule mod_fcgid.c>
    DocumentRoot /var/www/ispconfig/
    SuexecUserGroup ispconfig ispconfig
    <Directory /var/www/ispconfig/>
      Options Indexes FollowSymLinks MultiViews +ExecCGI
      AllowOverride AuthConfig Indexes Limit Options FileInfo
      AddHandler fcgid-script .php
      FCGIWrapper /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter .php
      Order allow,deny
      Allow from all
    </Directory>
    IPCCommTimeout  7200
  </IfModule>
  
  
  ServerSignature Off
  
  <IfModule mod_security2.c>
    SecRuleEngine Off
  </IfModule>

  # SSL Configuration
  SSLEngine On
  SSLCertificateFile /usr/local/ispconfig/interface/ssl/ispserver.crt
  SSLCertificateKeyFile /usr/local/ispconfig/interface/ssl/ispserver.key
  SSLCACertificateFile /usr/local/ispconfig/interface/ssl/ispserver.bundle


  <Directory /var/www/php-fcgi-scripts>
     AllowOverride None
     Order Deny,Allow
     Deny from all
  </Directory>

</VirtualHost>
 

Werbung

Top