ansible-nginx/templates/etc/nginx/sites-available/_php_index2.j2

19 lines
480 B
Plaintext
Raw Normal View History

2017-11-27 19:33:41 +07:00
{% extends "_php.j2" %}
{% block template_try_files %}
2019-02-20 23:08:56 +07:00
try_files {{ item.override_try_files | default('$uri $uri/ /index.php') }};
{% endblock %}
2017-11-27 19:33:41 +07:00
{% block template_upstream_location %}
location = /index.php {
fastcgi_pass {{ item.php_upstream }};
2017-11-27 19:33:41 +07:00
fastcgi_index index.php;
{% if item.upstream_params is defined and item.upstream_params is iterable %}
{% for param in item.upstream_params %}
{{ param }}
{% endfor %}
{% endif %}
include fastcgi.conf;
}
{% endblock %}