Create Serving_a_different_domain.md

The location directive was missing the "=" operator.
This commit is contained in:
Raphael Lullis 2017-06-11 03:55:38 +02:00 committed by GitHub
parent 45361a6b78
commit 491e44c346

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