-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
66 lines (59 loc) · 1.33 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
56
57
58
59
60
61
62
63
64
65
66
events {}
http {
server {
listen explore.ontology.stackroute.in;
server_name explore.ontology.stackroute.in;
location / {
proxy_pass http://localhost:4200;
}
}
server {
listen neo4j.ontology.stackroute.in;
server_name neo4j.ontology.stackroute.in;
location / {
proxy_pass http://localhost:7474;
}
}
server {
listen rabbitmq.ontology.stackroute.in;
server_name rabbitmq.ontology.stackroute.in;
location / {
proxy_pass http://localhost:15672;
}
}
server {
listen api.ontology.stackroute.in;
server_name api.ontology.stackroute.in;
location / {
proxy_pass http://localhost:3000;
}
}
server {
listen meta.ontology.stackroute.in;
server_name meta.ontology.stackroute.in;
location / {
proxy_pass http://localhost:4201;
}
}
server {
listen meta-api.ontology.stackroute.in;
server_name meta-api.ontology.stackroute.in;
location / {
proxy_pass http://localhost:3001;
}
}
server {
listen logs.ontology.stackroute.in;
server_name logs.ontology.stackroute.in;
location / {
proxy_pass http://localhost:5601;
}
}
server {
listen monitoring.ontology.stackroute.in;
server_name monitoring.ontology.stackroute.in;
location / {
proxy_pass http://localhost:9001;
}
}
}