Lighttpd – Von Http nach Https umleiten

Ich hatte neulich
das Problem,
das eine meiner Domains nur per HTTPS erreichbar sein sollte.
Es sollten alle HTTP aufrufe mit einem Redirect auf HTTPS verwiesen werden,
und dies sollte der Webserver machen (lighttpd).

Hier ist nun der Configteil der dies tut.

$HTTP["scheme"] == "http" {
$HTTP["host"] =~ "^((.+\.)?example\.com)$" {
url.redirect = ( "^/(.*)" => "https://%1/$1" )
}
This entry was posted in Uncategorized and tagged , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *