Fixed PID

This commit is contained in:
Emilien Mantel
2015-07-29 23:57:54 +02:00
parent 4bfca1652c
commit 084a6f283b
3 changed files with 2 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
user {{ nginx_user }};
worker_processes {{ nginx_worker_processes }};
pid {{ nginx_pid }};
pid /run/nginx.pid;
events {
{% for key, value in nginx_events.iteritems() %}
@@ -16,7 +16,7 @@ http {
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# From Ansible
{% for key, value in nginx_http.iteritems() %}
{{ "\t%-30s %s" | format(key, value) }};