saleor-dashboard/nginx/default.conf

12 lines
232 B
Text
Raw Permalink Normal View History

2019-10-31 06:37:38 +00:00
server {
listen 80;
server_name localhost;
root /app/dashboard/;
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
}