Files
Etienne PerotandgVisor bot 3924579214 nginx config: Remove worker_processes and events.worker_connections.
This is closer to the default nginx settings with respect to concurrency.

Turn off access log, as it is heavy on I/O and would not be used in a
production setup (whether with or without gVisor).

Update nginx to version `1.25.1`.

PiperOrigin-RevId: 551669286
2023-07-27 16:16:08 -07:00

16 lines
210 B
Nginx Configuration File

user nginx;
daemon off;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {}
http {
server {
access_log off;
location / {
root /tmp/html;
}
}
}