Fix VPS -> nginx deployment tips (#581)

`alias` field should be end with '/' in nginx.conf.
Or nginx server doesn't work.
This commit is contained in:
IceHe.me 2018-07-18 08:52:20 +08:00 committed by cinwell.li
parent f7274e141f
commit a923121be8

View File

@ -68,7 +68,7 @@ server {
server_name your.domain.com;
location / {
alias /path/to/dir/of/docs;
alias /path/to/dir/of/docs/;
index index.html;
}
}