diff --git a/nix/README.md b/nix/README.md index d92f910bc1176cca0e6464f0b2c7be0e0cb650cb..77bad0fae27e0ee345ab93efd66f0f8f7c2548c2 100644 --- a/nix/README.md +++ b/nix/README.md @@ -107,7 +107,7 @@ # Configure NGINX as a reverse proxy recommendedProxySettings = true; virtualHosts = { - "${server_name}" = { + "${matrix_hostname}" = { forceSSL = true; enableACME = true; @@ -124,14 +124,6 @@ # Configure NGINX as a reverse proxy } ]; - extraConfig = '' - merge_slashes off; - ''; - - "${matrix_hostname}" = { - forceSSL = true; - enableACME = true; - locations."/_matrix/" = { proxyPass = "http://backend_conduit$request_uri"; proxyWebsockets = true; @@ -141,6 +133,15 @@ # Configure NGINX as a reverse proxy ''; }; + extraConfig = '' + merge_slashes off; + ''; + }; + + "${server_name}" = { + forceSSL = true; + enableACME = true; + locations."=/.well-known/matrix/server" = { # Use the contents of the derivation built previously alias = "${well_known_server}";