2017-11-22 23:02:51 +07:00
|
|
|
server {
|
|
|
|
server_name {{ vhost }};
|
|
|
|
|
|
|
|
root /var/www;
|
|
|
|
|
|
|
|
{% if php_fpm_poold.0.status_path is defined %}
|
|
|
|
location = {{ php_fpm_poold.0.status_path }} {
|
2018-03-18 23:28:57 +07:00
|
|
|
include fastcgi.conf;
|
2017-11-22 23:02:51 +07:00
|
|
|
fastcgi_pass unix:{{ php_default_fpm_sock }};
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
{% if php_fpm_poold.0.ping_path is defined %}
|
|
|
|
location = {{ php_fpm_poold.0.ping_path }} {
|
2018-03-18 23:28:57 +07:00
|
|
|
include fastcgi.conf;
|
2017-11-22 23:02:51 +07:00
|
|
|
fastcgi_pass unix:{{ php_default_fpm_sock }};
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
2018-03-18 23:28:57 +07:00
|
|
|
include fastcgi.conf;
|
2017-11-22 23:02:51 +07:00
|
|
|
fastcgi_pass unix:{{ php_default_fpm_sock }};
|
|
|
|
}
|
|
|
|
}
|