saleor-dashboard/nginx/default.conf

11 lines
236 B
Text
Raw 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;
try_files $uri $uri/ /dashboard/index.html$args;
2019-10-31 06:37:38 +00:00
}
}