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
https://domain.tld
Re: https://domain.tld
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
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
-
Matthias Diehl
- Posts: 315
- Joined: 2002-09-24 13:26
Re: https://domain.tld
Dann musst Du den Eintrag in der httpd.conf ändern. Der sieht z.B. so aus:
Dort trägst Du einfach die anderen Daten ein und schon funzt es
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>
Re: https://domain.tld
jou danke.
ich depp...
... nur muss man auch das doc-root dazu ändern.
danke trotzdem ;)
ich depp...
... nur muss man auch das doc-root dazu ändern.
danke trotzdem ;)
-
Matthias Diehl
- Posts: 315
- Joined: 2002-09-24 13:26
Re: https://domain.tld
Klar, man muss eben alles anpassen, auch das DocumentRoot und bitte das ScriptAlias nicht vergessen :-D