2025-09-18 00:04:23 +00:00
|
|
|
worker_processes 1;
|
2025-08-16 00:47:14 +00:00
|
|
|
error_log /dev/stdout notice;
|
|
|
|
|
pid /tmp/pid;
|
|
|
|
|
|
2025-09-18 00:04:23 +00:00
|
|
|
# callgrind in worker processes must be able to do things
|
|
|
|
|
user root;
|
|
|
|
|
|
2025-08-16 00:47:14 +00:00
|
|
|
events {
|
2025-08-25 23:04:54 +00:00
|
|
|
worker_connections 10;
|
2025-08-16 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
keepalive_timeout 300;
|
2025-09-18 00:04:23 +00:00
|
|
|
aio on; # blocking io blocks tracing
|
|
|
|
|
directio 4m;
|
2025-08-16 00:47:14 +00:00
|
|
|
|
|
|
|
|
server {
|
|
|
|
|
listen 8080 ssl;
|
|
|
|
|
server_name www.example.com;
|
|
|
|
|
ssl_certificate /www.example.com.crt;
|
|
|
|
|
ssl_certificate_key /www.example.com.key;
|
2025-09-18 00:04:23 +00:00
|
|
|
#ssl_certificate_cache max=1000;
|
|
|
|
|
ssl_session_cache shared:SSL:10m;
|
2025-08-16 00:47:14 +00:00
|
|
|
access_log /tmp/access.log;
|
2025-08-18 03:59:32 +00:00
|
|
|
proxy_socket_keepalive on;
|
2025-08-16 00:47:14 +00:00
|
|
|
|
|
|
|
|
|