remove pid on arch

master
Peter Babič 3 years ago
parent 1820e90b4c
commit 30e1fdc29a
  1. 2
      templates/nginx.conf.j2
  2. 1
      vars/Archlinux.yml

@ -1,7 +1,9 @@
user {{ nginx_user }}; user {{ nginx_user }};
error_log {{ nginx_error_log }}; error_log {{ nginx_error_log }};
{% if nginx_pidfile is defined %}
pid {{ nginx_pidfile }}; pid {{ nginx_pidfile }};
{% endif %}
{% block worker %} {% block worker %}
worker_processes {{ nginx_worker_processes }}; worker_processes {{ nginx_worker_processes }};

@ -3,7 +3,6 @@ root_group: root
nginx_conf_path: /etc/nginx/conf.d nginx_conf_path: /etc/nginx/conf.d
nginx_conf_file_path: /etc/nginx/nginx.conf nginx_conf_file_path: /etc/nginx/nginx.conf
nginx_mime_file_path: /etc/nginx/mime.types nginx_mime_file_path: /etc/nginx/mime.types
nginx_pidfile: /run/nginx.pid
nginx_vhost_path: /etc/nginx/sites-enabled nginx_vhost_path: /etc/nginx/sites-enabled
nginx_default_vhost_path: /etc/nginx/sites-enabled/default nginx_default_vhost_path: /etc/nginx/sites-enabled/default
__nginx_user: "http" __nginx_user: "http"