Disable logging

pull/1406/head
Piero Toffanin 2023-09-27 16:43:25 -04:00
rodzic 9b49ad777d
commit 0501938d61
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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
@ -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 {

Wyświetl plik

@ -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
@ -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 {