-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
35 lines (25 loc) · 963 Bytes
/
nginx.conf
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
daemon off;
worker_processes 1;
events { worker_connections 1024; }
http {
sendfile on;
server {
listen 80;
location = /health_check {
proxy_pass _REPLACE_ME_PROTO_://_REPLACE_ME_HOST_/health_check;
proxy_set_header Host _REPLACE_ME_HOST_;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_intercept_errors on;
}
location / {
proxy_pass _REPLACE_ME_PROTO_://_REPLACE_ME_HOST_/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_intercept_errors on;
}
}
}