-
Notifications
You must be signed in to change notification settings - Fork 1
/
nginx.conf
55 lines (47 loc) · 1.54 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
server {
listen 80 default_server;
server_name _;
client_max_body_size 2048M;
location /sbb-tools/ {
proxy_pass http://localhost:5000/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
location /sbb-tools/ner/ {
proxy_pass http://localhost:5001/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
location /sbb-tools/ned/ {
proxy_pass http://localhost:5005/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
location /sbb-tools/de-ned/ {
proxy_pass http://localhost:5005/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
location /sbb-tools/fr-ned/ {
proxy_pass http://localhost:5006/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
location /sbb-tools/en-ned/ {
proxy_pass http://localhost:5007/;
proxy_connect_timeout 360000s;
proxy_send_timeout 360000s;
proxy_read_timeout 360000s;
send_timeout 360000s;
}
}