gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/nginx/nginx.conf (about) 1 user nginx; 2 daemon off; 3 4 error_log /var/log/nginx/error.log warn; 5 pid /var/run/nginx.pid; 6 7 events {} 8 http { 9 server { 10 access_log off; 11 location / { 12 root /tmp/html; 13 } 14 } 15 }