12 lines
135 B
Text
12 lines
135 B
Text
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
sendfile on;
|
||
|
keepalive_timeout 65;
|
||
|
{% include 'nginx-site.j2' %}
|
||
|
}
|