fixes for worker process profiling
Signed-off-by: Ava Hahn <a.hahn@f5.com>
This commit is contained in:
parent
71990d3988
commit
78baa850a8
7 changed files with 46 additions and 25 deletions
|
|
@ -1,19 +1,26 @@
|
|||
worker_processes 10;
|
||||
worker_processes 1;
|
||||
error_log /dev/stdout notice;
|
||||
pid /tmp/pid;
|
||||
|
||||
# callgrind in worker processes must be able to do things
|
||||
user root;
|
||||
|
||||
events {
|
||||
worker_connections 10;
|
||||
}
|
||||
|
||||
http {
|
||||
keepalive_timeout 300;
|
||||
aio on; # blocking io blocks tracing
|
||||
directio 4m;
|
||||
|
||||
server {
|
||||
listen 8080 ssl;
|
||||
server_name www.example.com;
|
||||
ssl_certificate /www.example.com.crt;
|
||||
ssl_certificate_key /www.example.com.key;
|
||||
#ssl_certificate_cache max=1000;
|
||||
ssl_session_cache shared:SSL:10m;
|
||||
access_log /tmp/access.log;
|
||||
proxy_socket_keepalive on;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue