saleor-dashboard/nginx/default.conf
2019-10-31 13:37:38 +07:00

10 lines
No EOL
189 B
Text

server {
listen 80;
server_name localhost;
root /app/dashboard/;
location / {
index index.html;
try_files $uri $uri/ /index.html$args;
}
}