data layer
This commit is contained in:
14
data-layer/console/nginx.conf
Normal file
14
data-layer/console/nginx.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
listen 4002;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location /api/analytics/ {
|
||||
rewrite ^/api/analytics/(.*)$ /$1 break;
|
||||
proxy_pass http://api:4000;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user