-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.conf
More file actions
39 lines (39 loc) · 1.17 KB
/
default.conf
File metadata and controls
39 lines (39 loc) · 1.17 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
server {
server_name api.tezdealz.com
listen 80;
# location ~* /v1/appointments {
# proxy_pass http://appointments:3006;
# client_max_body_size 200M;
# proxy_read_timeout 300;
# proxy_connect_timeout 300;
# proxy_send_timeout 300;
# }
# location ~* /v1/tezDeals-doc {
# proxy_pass http://swagger:3005;
# client_max_body_size 200M;
# proxy_read_timeout 300;
# proxy_connect_timeout 300;
# proxy_send_timeout 300;
# }
location ~* /v1/users {
proxy_pass http://users:3004;
client_max_body_size 200M;
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_send_timeout 300;
}
location ~* /v1/ads {
proxy_pass http://ads:3003;
client_max_body_size 200M;
proxy_read_timeout 300s;
proxy_connect_timeout 300s;
proxy_send_timeout 300s;
}
location ~* /v1/tickets {
proxy_pass http://tickets:3002;
client_max_body_size 200M;
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_send_timeout 300;
}
}