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

39 lines
875 B
Plaintext
Raw Normal View History

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;
}
{% end if %}
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-11 14:59:43 +02:00
{% endif %}