mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-22 20:39:40 +01:00
6 lines
156 B
Plaintext
6 lines
156 B
Plaintext
|
server {
|
||
|
server_name ~^www\.(?<domain>.+)$;
|
||
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
||
|
|
||
|
return 301 https://$domain$request_uri;
|
||
|
}
|