• If you need help or want to discuss things, you now can also join us on our Discord Server!
  • A first preview of the unlimited version of SinusBot can be found in the Upcoming Changes thread. A version for Windows will follow, but we don't have a release date, yet.

Solved ERR_TOO_MANY_REDIRECTS

Status
Not open for further replies.

P4sca1

New Member
Klappt soweit, vielen dank. Wenn ich das ganze jedoch mit Port 443 versucht und die SSLEngine auf On stelle + die SSL Certs angebe, klappt es wieder nicht.
Brauche ich für jeden VHost einen eigenen SSL Key?
 

CrAazZyMaN21

Donor
is awesome!
Mach beim bot das ssl cert raus und dann in apache2 so eintragen dann sollte es gehen.

<VirtualHost *:80>
ServerName musik.einfach-gmod.de
Redirect / https://musik.einfach-gmod.de/
</VirtualHost>

<VirtualHost *:443>
ServerName musik.einfach-gmod.de
Header always add Strict-Transport-Security "max-age=15768000"
ProxyPreserveHost On
ProxyRequests Off
ProxyVia Off
ProxyPass /favicon.ico !
ProxyPass / http://127.0.0.1:8079/
ProxyPassReverse / http://127.0.0.1:8079/


<IfModule mod_ssl.c>
SSLEngine on
SSLCertificateFile /etc/ssl/www/www.crt
SSLCertificateKeyFile /etc/ssl/www/www.key
SSLCertificateChainFile /etc/ssl/www/www.ca-bundle
</IfModule>
</VirtualHost>
 
Status
Not open for further replies.
Top