Skip to content

Commit

Permalink
Merge branch 'W7PEA-patch-2'
Browse files Browse the repository at this point in the history
  • Loading branch information
tilgovi committed Jun 17, 2018
2 parents d213103 + 7891310 commit f0c5499
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ worker_processes 1;

user nobody nogroup;
# 'user nobody nobody;' for systems with 'nobody' as a group instead
pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;

events {
worker_connections 1024; # increase if you have lots of clients
Expand All @@ -16,7 +16,7 @@ http {
include mime.types;
# fallback in case we can't determine a type
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
access_log /var/log/nginx/access.log combined;
sendfile on;

upstream app_server {
Expand Down

0 comments on commit f0c5499

Please sign in to comment.