saleor-dashboard/nginx/default.conf

10 lines
189 B
Text
Raw Normal View History

2019-10-31 06:37:38 +00:00
server {
listen 80;
server_name localhost;
root /app/dashboard/;
location / {
index index.html;
try_files $uri $uri/ /index.html$args;
}
}