Hallo zusammen.
Alle Probleme gelöst bleibt nur das Problem ...
Ich habe einen
-Dedizierten rootserver mit Debian Lenny minimal 64 bit mit
-ispcp 1.0.0
-openssl
-gestern installiert
alles funktioniert einwandfrei ohne ssl, auch der sslaufruf funktioniert, nur dass nach dem einloggen die umleitungsschleife kommt..... in den confs hab ich gesehn dass es diverse redirekts gibt, die habe ich alle in https umgeschrieben
meine sslvhostconf sieht nun so aus
Code:
<VirtualHost admin.ns1.test777.org:7443>
ServerAdmin admin@test777.org
DocumentRoot /var/www/ispcp/gui
ServerName admin.ns1.test777.org:7443
Alias /errors /var/www/ispcp/gui/errordocs/
ErrorDocument 401 /errors/401.html
ErrorDocument 403 /errors/403.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html
ErrorDocument 503 /errors/503.html
Alias /pma /var/www/ispcp/gui/tools/pma/
Alias /webmail /var/www/ispcp/gui/tools/webmail/
Alias /ftp /var/www/ispcp/gui/tools/filemanager/
<IfModule suexec_module>
SuexecUserGroup vu2000 vu2000
</IfModule>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/ispcp/gui>
Options -Indexes Includes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_fcgid.c>
<Directory /var/www/ispcp/gui>
FCGIWrapper /var/www/fcgi/master/php5-fcgi-starter .php
Options +ExecCGI
</Directory>
<Directory "/var/www/fcgi/master">
AllowOverride None
Options +ExecCGI MultiViews -Indexes
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_fastcgi.c>
ScriptAlias /php5/ /var/www/fcgi/master/
<Directory "/var/www/fcgi/master">
AllowOverride None
Options +ExecCGI MultiViews -Indexes
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_php5.c>
<Directory /var/www/ispcp/gui>
php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/var/run/ispcp.lock:/proc/:/bin/df:/bin/mount:/var/log/rkhunter.log:/var/log/chkrootkit.log:/usr/share/php/"
php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
php_admin_value upload_tmp_dir "/var/www/ispcp/gui/phptmp/"
</Directory>
</IfModule>
#### ssl
SSLEngine on
SSLCipherSuite HIGH:MEDIUM
SSLCertificateFile /etc/ssl/server/server.crt
SSLCertificateKeyFile /etc/ssl/server/server.pem
SSLCertificateChainFile /etc/ssl/server/pkcs/ns1.p12
SSLCACertificatePath /etc/ssl/CA/
SSLCACertificateFile /etc/ssl/CA/test777.crt
CustomLog /var/log/apache2/ssl_access.log combined
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
</VirtualHost>
#
# Master End
#
die ispcp.conf ist original bis auf
und
Code:
Redirect ... https:// admin.ns1.test777.org:7443/ftp/
...etc
ich bin ehrlich gesagt ratlos was das sein könnte
der Umleitungsschleifenfehler kommt immer im Browser nach dem login
Für eine Hilfe wär ich sehr dankbar.
bis dann...