14 lines
No EOL
296 B
Text
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;
|
|
}
|
|
} |