瀏覽代碼

Create Serving_a_different_domain.md

The location directive was missing the "=" operator.
Raphael Lullis 7 年之前
父節點
當前提交
491e44c346
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Running-Mastodon/Serving_a_different_domain.md

+ 1 - 1
Running-Mastodon/Serving_a_different_domain.md

@@ -67,7 +67,7 @@ Therefore, the easiest way to configure domain.org is to redirect `/.well-known/
 With nginx, it would be as simple as adding:
 
 ```nginx
-location /.well-known/host-meta {
+location = /.well-known/host-meta {
        return 301 https://social.example.org$request_uri;
 }
 ```