From a923121be8b6b4e0f051c7f2a86032baaff2bd2c Mon Sep 17 00:00:00 2001 From: "IceHe.me" Date: Wed, 18 Jul 2018 08:52:20 +0800 Subject: [PATCH] Fix VPS -> nginx deployment tips (#581) `alias` field should be end with '/' in nginx.conf. Or nginx server doesn't work. --- docs/deploy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploy.md b/docs/deploy.md index af3a7f3c..fdf01671 100644 --- a/docs/deploy.md +++ b/docs/deploy.md @@ -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; } }