This commit is contained in:
admin 2024-03-27 13:08:02 +01:00
parent 3197673678
commit cd4ebfb807
5 changed files with 114 additions and 20 deletions

View file

@ -64,23 +64,23 @@ services.postgresql = {
locations."/_synapse/client".proxyPass = "http://[::1]:8008";
};
${domain} = {
# enableACME = true;
# forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:8008";
};
# This section is not needed if the server_name of matrix-synapse is equal to
# the domain (i.e. example.org from @foo:example.org) and the federation port
# is 8448.
# Further reference can be found in the docs about delegation under
# https://element-hq.github.io/synapse/latest/delegate.html
locations."= /.well-known/matrix/server".extraConfig = mkWellKnown serverConfig;
# This is usually needed for homeserver discovery (from e.g. other Matrix clients).
# Further reference can be found in the upstream docs at
# https://spec.matrix.org/latest/client-server-api/#getwell-knownmatrixclient
locations."= /.well-known/matrix/client".extraConfig = mkWellKnown clientConfig;
};
# ${domain} = {
# # enableACME = true;
# # forceSSL = true;
# locations."/" = {
# proxyPass = "http://localhost:8008";
# };
# # This section is not needed if the server_name of matrix-synapse is equal to
# # the domain (i.e. example.org from @foo:example.org) and the federation port
# # is 8448.
# # Further reference can be found in the docs about delegation under
# # https://element-hq.github.io/synapse/latest/delegate.html
# locations."= /.well-known/matrix/server".extraConfig = mkWellKnown serverConfig;
# # This is usually needed for homeserver discovery (from e.g. other Matrix clients).
# # Further reference can be found in the upstream docs at
# # https://spec.matrix.org/latest/client-server-api/#getwell-knownmatrixclient
# locations."= /.well-known/matrix/client".extraConfig = mkWellKnown clientConfig;
# };
};
}