Mass cleanup and drop jessie support

This commit is contained in:
Emilien Mantel
2018-03-18 17:28:57 +01:00
parent 8e53b9cd80
commit 5878040e84
24 changed files with 130 additions and 185 deletions

View File

@@ -5,19 +5,19 @@ server {
{% if php_fpm_poold.0.status_path is defined %}
location = {{ php_fpm_poold.0.status_path }} {
include {{ nginx_include }};
include fastcgi.conf;
fastcgi_pass unix:{{ php_default_fpm_sock }};
}
{% endif %}
{% if php_fpm_poold.0.ping_path is defined %}
location = {{ php_fpm_poold.0.ping_path }} {
include {{ nginx_include }};
include fastcgi.conf;
fastcgi_pass unix:{{ php_default_fpm_sock }};
}
{% endif %}
location ~ \.php$ {
include {{ nginx_include }};
include fastcgi.conf;
fastcgi_pass unix:{{ php_default_fpm_sock }};
}
}