Преглед на файлове

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;
 }
 ```