소스 검색

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 ###