diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T16·06+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T16·07+0000 |
commit | 9653bdcf694e2317754060056dec31577e8d55ae (patch) | |
tree | b5e380cea2b5c94ac164949226b6dae6fe377f85 /infra/kubernetes/nginx/nginx.conf | |
parent | a349d5e9145ae9a6c89f62ec631f01fb180de546 (diff) |
fix(infra/k8s): Workaround for nginx crash on pidfile write r/220
Newer versions of nginx apparently hard-crash if they can't write a PID file in the current directory. To work around this, some writeable scratch space is created for the nginx daemon to write its PID to.
Diffstat (limited to 'infra/kubernetes/nginx/nginx.conf')
-rw-r--r-- | infra/kubernetes/nginx/nginx.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/kubernetes/nginx/nginx.conf b/infra/kubernetes/nginx/nginx.conf index 5a008a0b953f..ead5c4061720 100644 --- a/infra/kubernetes/nginx/nginx.conf +++ b/infra/kubernetes/nginx/nginx.conf @@ -1,6 +1,7 @@ daemon off; worker_processes 1; error_log stderr; +pid /run/nginx.pid; events { worker_connections 1024; |