mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-05 05:18:06 +08:00
39 lines
891 B
Nginx Configuration File
39 lines
891 B
Nginx Configuration File
user nginx;
|
|
worker_processes 1;
|
|
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
|
|
# List of application servers
|
|
upstream app_servers {
|
|
session_sticky cookie=route mode=insert fallback=on;
|
|
server 127.0.0.1:7001 max_fails=3 fail_timeout=30s;
|
|
server 127.0.0.1:7002 max_fails=3 fail_timeout=30s;
|
|
}
|
|
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
#gzip on;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|