Initial version of nginx module
This commit is contained in:
parent
cb8cfa7775
commit
0b4d310656
3 changed files with 127 additions and 0 deletions
18
nginx/templates/nginx.conf.erb
Normal file
18
nginx/templates/nginx.conf.erb
Normal file
|
@ -0,0 +1,18 @@
|
|||
user <%= user %>;
|
||||
worker_processes <%= processorcount %>;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
sendfile on;
|
||||
tcp_nodelay on;
|
||||
tcp_nopush on;
|
||||
keepalive_timeout 65;
|
||||
|
||||
include conf.d/*.conf;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue