From 88d81f14e91b307c5fc41500f079a4954006ef89 Mon Sep 17 00:00:00 2001
From: abcang <abcang1015@gmail.com>
Date: Thu, 7 Dec 2017 01:21:08 +0900
Subject: [PATCH] Specify root directive for letsencrypt (#471)

---
 Running-Mastodon/Production-guide.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Running-Mastodon/Production-guide.md b/Running-Mastodon/Production-guide.md
index 989713d3..cfea6d48 100644
--- a/Running-Mastodon/Production-guide.md
+++ b/Running-Mastodon/Production-guide.md
@@ -199,6 +199,7 @@ server {
   listen 80;
   listen [::]:80;
   server_name example.com;
+  root /home/mastodon/live/public;
   # Useful for Let's Encrypt
   location /.well-known/acme-challenge/ { allow all; }
   location / { return 301 https://$host$request_uri; }