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

43 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-08-12 19:42:13 +00:00
#jinja2: lstrip_blocks: True
2017-07-15 15:24:48 +00:00
# {{ ansible_managed }}
server {
listen 80;
2017-07-16 16:18:50 +00:00
server_name {{ ansible_fqdn }};
2017-07-15 15:24:48 +00:00
2018-08-11 12:59:43 +00:00
{% if nginx_tls_enabled %}
2017-07-15 20:45:48 +00:00
return 301 https://$server_name$request_uri;
2018-08-11 12:59:43 +00: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 13:33:16 +00:00
{% endif %}
2017-07-15 20:45:48 +00:00
}
2018-08-11 12:59:43 +00:00
{% if nginx_tls_enabled %}
2017-07-15 20:45:48 +00:00
server {
listen 443 ssl;
2017-07-16 16:18:50 +00:00
server_name {{ ansible_fqdn }};
2017-07-15 20:45:48 +00:00
2017-07-15 15:24:48 +00:00
location / {
2017-07-15 15:49:44 +00:00
root /var/www/vhosts/default;
2017-07-15 15:24:48 +00: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 09:46:43 +00:00
2018-08-14 21:31:33 +00: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 15:24:48 +00:00
}
2018-08-11 12:59:43 +00:00
{% endif %}