forked from renegare/devops-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.conf.mu
More file actions
54 lines (41 loc) · 1.24 KB
/
nginx.conf.mu
File metadata and controls
54 lines (41 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
user nginx;
worker_processes 1;
error_log /proc/1/fd/1 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 /proc/1/fd/1 main;
sendfile off;
keepalive_timeout 65;
server {
listen {{listen}} default_server;
server_name _;
location / {
proxy_pass http://127.0.0.1:{{healthcheckPort}};
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
}
}
# Proxies
{{#services}}
server {
resolver {{dns}} valid=5s ipv6=off;
listen {{listen}};
server_name {{ingress_host}};
set $upstream_service {{egress_host}};
location / {
client_body_buffer_size 1m;
proxy_pass http://$upstream_service:{{port}};
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
}
}
{{/services}}
}