Page 1 of 1
https://domain.tld
Posted: 2003-03-09 12:05
by moppi
ich habe auf dem server ein ssl zertifikat installiert.
das funktioniert auch super nur leider werden alle https://
aufrufe an confixx weitergegeben wo anschließend das nette auth fenster aufpoppt. statt dessen sollten die anfragen auf dem entsprechenden vhost domain auflaufen.
kann mir jemand helfen?
daniel
Re: https://domain.tld
Posted: 2003-03-09 13:45
by jtb
das was du vorhast, funktioniert so nicht..
siehe
http://server.1und1.com/root_server/howto/6.html
Re: https://domain.tld
Posted: 2003-03-09 13:53
by moppi
hallo jens,
ich will aber keinen ssl proxy ;)
ich möchte einfach nur das nicht confixx aufpoppt sondern der dort
hinterlegt html content. nix mit diesem subdomainkrams oder.
brauche nur diese eine ssl domain
gruß
daniel
Re: https://domain.tld
Posted: 2003-03-09 13:57
by Matthias Diehl
Dann musst Du den Eintrag in der httpd.conf ändern. Der sieht z.B. so aus:
Code: Select all
<VirtualHost 999.888.777.666:443>
SSLEngine on
ServerName confixx.p12345678.pureserver.de
DocumentRoot /home/confixx/html
ScriptAlias /cgi-bin/ /home/confixx/html/cgi-bin/
CustomLog /var/log/httpd/confixx/confixx.p10050188.pureserver.de_ssl_access
ErrorLog /var/log/httpd/confixx/confixx.p10050188.pureserver.de_ssl_error
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
#User confixx
#Group confixx
</VirtualHost>
Dort trägst Du einfach die anderen Daten ein und schon funzt es
Re: https://domain.tld
Posted: 2003-03-09 14:06
by moppi
jou danke.
ich depp...
... nur muss man auch das doc-root dazu ändern.
danke trotzdem ;)
Re: https://domain.tld
Posted: 2003-03-09 14:38
by Matthias Diehl
Klar, man muss eben alles anpassen, auch das DocumentRoot und bitte das ScriptAlias nicht vergessen :-D