ispCP - Board - Support
https -> 404 error - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+--- Thread: https -> 404 error (/thread-2620.html)



https -> 404 error - tetex - 03-03-2008 07:45 AM

Hallo,

habe Probleme beim einrichten des HTTPS-Service für ispCP. Habe anhand dieses HowTo http://www.isp-control.net/documentation/howto/security/create_your_own_ssl_ca_and_secure_multiple_services alle Schritte bis/inkl. 2.2 abgeschlossen. Nach reload des Apache2 und entern der https://domain.tld bekomme ich folgenden Fehler:

Code:
Not Found

The requested URL /php5/php5-fcgi-starter/index.php was not found on this server.

Habe das HowTo bis ins kleinste Detail ohne Fehlerausgaben umgesetzt. Lediglich war ich mir unsicher beim abändern folgenden Abschnitts:

01_ssl_master.conf
Code:
#
# SSL Master Begin
#
<VirtualHost 85.*.*.*:443>
     #
     # SSL Start
     #
     SSLEngine On
     SSLCertificateFile /etc/apache2/ssl/apache.cert.pem
     SSLCertificateKeyFile /etc/apache2/ssl/apache.key.pem
     #
     # SSL End
     #
     ServerAdmin     info@domain.tld
     DocumentRoot    /var/www/ispcp/gui
     ServerName      domain.tld
     ErrorLog        /var/log/apache2/users/ssl.domain.tld-error.log
     TransferLog     /var/log/apache2/users/ssl.domain.tld-access.log
     CustomLog       /var/log/apache2/ssl.domain.tld-traf.log traff
     CustomLog       /var/log/apache2/ssl.domain.tld-combined.log combined
#
# ... below here, nothing has to be changed
#
</VirtualHost>
#
# SSL Master End
#

*domain.tld wurde ersetzt durch die richtige
85.*.*.* wurde duch meine serverIP ersetzt


Verbring nun schon mehrere Stunden damit den Fehler zu finden aber kommt einfach nichts bei rum..

In /var/log/apache2/users/ssl.domain.tld-error.log finde ich immer nur folgendes:
Code:
[Sun Mar 02 13:03:12 2008] [error] [client 213.*.*.*] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Sun Mar 02 13:12:51 2008] [error] [client 213.*.*.*] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Sun Mar 02 13:16:27 2008] [error] [client 213.*.*.*] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed
[Sun Mar 02 13:16:29 2008] [error] [client 213.*.*.*] (2)No such file or directory: FastCGI: stat() of "/var/www/ispcp/gui/php5" failed

Ich frage mich was hat der in /var/www/ispcp/gui/php5 zu suchen wenn ich https nicht für isp.domain.tld nutzen möchte sondern für domain.tld

Hoffe mir kann jemand bei dem Problem helfen.

Mfg


RE: https -> 404 error - joximu - 03-03-2008 08:09 AM

ich würde einfach mal sagen, dass da

#
# ... below here, nothing has to be changed
#

der restliche Teil der (in der Anleitung 00_master.conf) vhost-definition von domain.tld hinkommt. Also eigentlich alles was innerhalb der VirtualHost steht...

/J