4 lines
106 B
Text
4 lines
106 B
Text
# Generischer Rewrite von HTTP nach HTTPS
|
|
location / {
|
|
return 302 https://$server_name$request_uri;
|
|
}
|