deploy_saleor/resources/saleor-dashboard/server_block

15 lines
373 B
Text
Raw Normal View History

2021-02-05 02:11:19 +00:00
# configuration of the server
server {
listen 80;
server_name {host} www.{host};
charset utf-8;
root /var/www/{host}
# max upload size
client_max_body_size 75M;
location ^~ /{app_mount_uri} {
alias /var/www/{host}/{app_mount_uri};
index index.html;
try_files $uri $uri/ /{app_mount_uri}/index.html;
}
}