Merge pull request #301 from lullis/patch-1

Create Serving_a_different_domain.md
This commit is contained in:
Eugen Rochko 2017-06-11 12:32:28 +02:00 committed by GitHub
commit 57c1a9888b
1 changed files with 1 additions and 1 deletions

View File

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