xoxys.nginx/templates/etc/nginx/sites-available/default.j2

43 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-08-12 21:42:13 +02:00
#jinja2: lstrip_blocks: True
2017-07-15 17:24:48 +02:00
# {{ ansible_managed }}
server {
listen 80;
2017-07-16 18:18:50 +02:00
server_name {{ ansible_fqdn }};
2017-07-15 17:24:48 +02:00
2018-08-11 14:59:43 +02:00
{% if nginx_tls_enabled %}
2017-07-15 22:45:48 +02:00
return 301 https://$server_name$request_uri;
2018-08-11 14:59:43 +02:00
{% else %}
location / {
root /var/www/vhosts/default;
index index.html index.htm;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
2018-08-11 15:33:16 +02:00
{% endif %}
2017-07-15 22:45:48 +02:00
}
2018-08-11 14:59:43 +02:00
{% if nginx_tls_enabled %}
2017-07-15 22:45:48 +02:00
server {
listen 443 ssl;
2017-07-16 18:18:50 +02:00
server_name {{ ansible_fqdn }};
2017-07-15 22:45:48 +02:00
2017-07-15 17:24:48 +02:00
location / {
2017-07-15 17:49:44 +02:00
root /var/www/vhosts/default;
2017-07-15 17:24:48 +02:00
index index.html index.htm;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
2018-08-12 11:46:43 +02:00
2018-08-14 23:31:33 +02:00
ssl_certificate /etc/pki/tls/certs/{{ nginx_tls_cert_file }};
ssl_certificate_key /etc/pki/tls/private/{{ nginx_tls_key_file }};
2017-07-15 17:24:48 +02:00
}
2018-08-11 14:59:43 +02:00
{% endif %}