Beginning-Ansible-Concepts-.../chapter07/templates/nginx-default.j2

15 lines
219 B
Text
Raw Permalink Normal View History

2022-03-21 18:17:54 +01:00
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 %}
}