diff --git a/docs/nginx.conf b/docs/nginx.conf index 1af667f386..7b64550084 100644 --- a/docs/nginx.conf +++ b/docs/nginx.conf @@ -15,7 +15,7 @@ http { } location /docs { - root /usr/share/nginx/html; + alias /usr/share/nginx/html; index /docs/index.html; try_files $uri $uri/ /docs/index.html?q=$query_string; } @@ -23,7 +23,7 @@ http { location = /docs/proxy/js/script.js { proxy_pass https://plausible.io/js/script.js; proxy_set_header Host plausible.io; - } + } location = /docs/proxy/api/event { proxy_pass https://plausible.io/api/event; @@ -53,4 +53,4 @@ http { application/xml application/json application/ld+json; -} \ No newline at end of file +} diff --git a/proto/zitadel/system.proto b/proto/zitadel/system.proto index b34977e621..4bfec35e6e 100644 --- a/proto/zitadel/system.proto +++ b/proto/zitadel/system.proto @@ -229,7 +229,7 @@ service SystemService { }; } - // Returns the domain of an instance + // Removes the domain of an instance rpc RemoveDomain(RemoveDomainRequest) returns (RemoveDomainResponse) { option (google.api.http) = { delete: "/instances/{instance_id}/domains/{domain}"; @@ -240,7 +240,7 @@ service SystemService { }; } - // Returns the domain of an instance + // Sets the primary domain of an instance rpc SetPrimaryDomain(SetPrimaryDomainRequest) returns (SetPrimaryDomainResponse) { option (google.api.http) = { post: "/instances/{instance_id}/domains/_set_primary";