Skip to content

Commit

Permalink
Merge pull request #1406 from pierotofy/logs
Browse files Browse the repository at this point in the history
Disable logging
  • Loading branch information
pierotofy committed Sep 27, 2023
2 parents 9b49ad7 + 0501938 commit 74e4107
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nginx/nginx-ssl.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ worker_processes 1;
# Change this if running outside docker!
user root root;
pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;
error_log /dev/null;

events {
worker_connections 1024; # increase if you have lots of clients
Expand All @@ -16,7 +16,7 @@ http {

# fallback in case we can't determine a type
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
access_log off;
sendfile on;

upstream app_server {
Expand Down
4 changes: 2 additions & 2 deletions nginx/nginx.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ worker_processes 1;
# Change this if running outside docker!
user root root;
pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;
error_log /dev/null;

events {
worker_connections 1024; # increase if you have lots of clients
Expand All @@ -16,7 +16,7 @@ http {

# fallback in case we can't determine a type
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
access_log off;
sendfile on;

upstream app_server {
Expand Down

0 comments on commit 74e4107

Please sign in to comment.