Nginx

Use as reverse proxy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
upstream upstream {
server 192.168.60.110;
}

server {
listen 80;
server_name example.com;

location / {
proxy_pass http://upstream;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# HTTP 1.1 support
proxy_http_version 1.1;
proxy_set_header Connection "";
}

access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
}

Fix the client intended to send too large body nginx error

1
vi /etc/nginx/nginx.conf
1
2
# Inside http
client_max_body_size 20M;
1
service nginx reload

Docker load-balancer

Comments

⬆︎TOP