deploy_saleor/resources/server_block

14 lines
296 B
Text
Raw Normal View History

2021-01-24 10:07:41 +00:00
server {
listen 80;
server_name {host} www.{host};
location /graphql/ {
proxy_pass https://{apihost}:{apiport};
}
location /dashboard/ {
path {hd}/saleor-dashboard/build/;
index index.html;
try_files $uri $uri/ /dashboard/index.html;
}
}