deploy_saleor/resources/server_block
Vague Rabbit dabbba36b4 commit
2021-01-24 02:07:41 -08:00

14 lines
No EOL
296 B
Text

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;
}
}