2019-10-31 06:37:38 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name localhost;
|
|
|
|
root /app/dashboard/;
|
2019-10-31 07:31:13 +00:00
|
|
|
|
|
|
|
location /dashboard/ {
|
|
|
|
alias /app/dashboard/;
|
2019-10-31 06:37:38 +00:00
|
|
|
index index.html;
|
2019-11-03 19:21:48 +00:00
|
|
|
try_files $uri $uri/ /dashboard/index.html;
|
2019-10-31 06:37:38 +00:00
|
|
|
}
|
2019-11-03 19:21:48 +00:00
|
|
|
}
|