mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
fix: use /tmp/nginx.pid to avoid permission denied errors (#877)
Set pid directive to /tmp/nginx.pid in nginx.conf and nginx.local.conf to prevent permission denied errors when running nginx as a non-root user. Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
}
|
}
|
||||||
|
pid /tmp/nginx.pid;
|
||||||
http {
|
http {
|
||||||
# Basic settings
|
# Basic settings
|
||||||
sendfile on;
|
sendfile on;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
}
|
}
|
||||||
|
pid /tmp/nginx.pid;
|
||||||
http {
|
http {
|
||||||
# Basic settings
|
# Basic settings
|
||||||
sendfile on;
|
sendfile on;
|
||||||
|
|||||||
Reference in New Issue
Block a user