forked from GovAlta/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
111 lines (89 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
events {
worker_connections 1024;
}
http{
sendfile on;
include mime.types;
default_type application/octet-stream;
server {
listen 8080;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
location /angular/ {
proxy_pass http://localhost:8082/;
}
location /vue/ {
proxy_pass http://localhost:8083/;
}
location /angular-material/ {
proxy_pass http://localhost:8084/;
}
location /react/ {
proxy_pass http://localhost:8085/;
}
location / {
proxy_pass http://localhost:8081/;
}
}
server {
listen 8081;
root /opt/app-root/src/core-css;
index index.html;
location / {
index index.html;
try_files $uri /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
server {
listen 8082;
root /opt/app-root/src/angular-components;
index index.html;
location / {
index index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
server {
listen 8083;
root /opt/app-root/src/vue-components;
index index.html;
location / {
index index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
server {
listen 8084;
root /opt/app-root/src/angular-material-components;
index index.html;
location / {
index index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
server {
listen 8085;
root /opt/app-root/src/react-components;
index index.html;
location / {
index index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}
}