##// END OF EJS Templates
packages: bump redis
packages: bump redis

File last commit:

r23:ffcea5dc
r55:73b11481
Show More
nginx.conf
31 lines | 709 B | text/plain | NginxConfLexer
docker: added all the initial docker files...
r1 user root;
worker_processes 2;
pid /var/run/nginx.pid;
release of new installer/docker stack updates...
r23 error_log /dev/stdout info;
docker: added all the initial docker files...
r1
events {
worker_connections 1024;
# multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
release of new installer/docker stack updates...
r23 server_tokens off;
docker: added all the initial docker files...
r1
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" '
'$request_time $upstream_response_time $pipe';
release of new installer/docker stack updates...
r23 access_log /dev/stdout main;
docker: added all the initial docker files...
r1
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
release of new installer/docker stack updates...
r23 include /etc/nginx/http.conf;
docker: added all the initial docker files...
r1 }