浏览代码

Fix pid path in Nginx configuration

Emmanuel Bouthenot 5 年之前
父节点
当前提交
e34b9eb0b2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      roles/webserver/templates/nginx/nginx.conf.j2

+ 1 - 1
roles/webserver/templates/nginx/nginx.conf.j2

@@ -31,7 +31,7 @@ worker_connections 4096;
 }
 
 # PID file
-pid /var/run/nginx.pid;
+pid /run/nginx.pid;
 
 http {
     ### Global settings ###