Beginning-Ansible-Concepts-.../chapter08/templates/nginx-default.j2
2022-04-23 08:57:49 +01:00

14 lines
219 B
Django/Jinja

server {
listen {{ http_port }} default_server;
root /var/www/html;
server_name _;
{% if status_url is defined -%}
location /{{ status_url | default('status') }} {
stub_status on;
}
{%- endif %}
}