We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67c1793 + d893b8b commit a5a57b4Copy full SHA for a5a57b4
container/root/etc/fix-attrs.d/02-tmp
@@ -2,3 +2,5 @@
2
/tmp/.nginx true www-data 0644 2700
3
/tmp true www-data 0644 2700
4
5
+# Unfortunately, even if it isn't used, it gets a lock by nginx
6
+/var/log/nginx/error.log true www-data 0644 2700
container/root/etc/nginx/nginx.conf
@@ -14,6 +14,8 @@ worker_processes auto;
14
15
pid /tmp/.nginx/nginx.pid;
16
17
+error_log /dev/stdout warn;
18
+
19
events {
20
# @see http://serverfault.com/questions/209014/how-can-i-observe-what-nginx-is-doing-to-solve-1024-worker-connections-are-n
21
worker_connections 1024;
@@ -30,7 +32,6 @@ http {
30
32
31
33
log_format minimal '$request_method $request_uri $status';
34
- error_log /dev/stdout;
35
access_log /dev/stdout main;
36
37
sendfile on;
0 commit comments