Browse Source

Create Serving_a_different_domain.md

The location directive was missing the "=" operator.
Raphael Lullis 7 năm trước cách đây
mục cha
commit
491e44c346
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
 }
 ```