Nginx base image with error_log error, access_log off; keepalive_timeout 0;
10K+
user nginx; worker_processes 1;
error_log /var/log/nginx/error.log error; pid /var/run/nginx.pid;
events { worker_connections 2024; }
http { include /etc/nginx/mime.types; default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log off;
sendfile on;
#tcp_nopush on;
keepalive_timeout 0;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
Content type
Image
Digest
Size
48.7 MB
Last updated
over 6 years ago
docker pull rameshsn/nginx