From 373f37c535791623d0003b20bfdb1d43583b8d00 Mon Sep 17 00:00:00 2001 From: Samuel Reichert Date: Wed, 3 Jun 2026 12:49:03 +0200 Subject: [PATCH 1/2] docs(docgen): add IIS default document note for Windows deployment IIS does not serve index.html by default; omitting this config causes the DocGen base URL to fail silently. --- .../modules/document-generation/installation-configuration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md b/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md index 029515d545d..26f65e5248b 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md @@ -174,3 +174,5 @@ Rule | Name | Pattern | Rewrite URL 2 | docgen | `^(docgen/)(.*)` | `http://localhost:8080/{R:1}{R:2}` {{% alert color="info" %}}Rule 1 is based on the default URL prefix (`p`) for page/microflow URLs. If you configured a different prefix in the runtime settings of your app, adjust the rule accordingly.{{% /alert %}} + +{{% alert color="info" %}}If you are using IIS as your reverse proxy, make sure that the [default document](https://learn.microsoft.com/en-us/iis/configuration/system.webserver/defaultdocument/) is configured to serve `index.html`. Without this setting, the base URL will not resolve correctly and document generation will fail.{{% /alert %}} From 3ec441b5a3c28b18f277f0d453950d89b607a26d Mon Sep 17 00:00:00 2001 From: nicoletacoman Date: Wed, 3 Jun 2026 14:30:10 +0200 Subject: [PATCH 2/2] TW review --- .../modules/document-generation/installation-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md b/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md index 26f65e5248b..f1c6730d59a 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/document-generation/installation-configuration.md @@ -175,4 +175,4 @@ Rule | Name | Pattern | Rewrite URL {{% alert color="info" %}}Rule 1 is based on the default URL prefix (`p`) for page/microflow URLs. If you configured a different prefix in the runtime settings of your app, adjust the rule accordingly.{{% /alert %}} -{{% alert color="info" %}}If you are using IIS as your reverse proxy, make sure that the [default document](https://learn.microsoft.com/en-us/iis/configuration/system.webserver/defaultdocument/) is configured to serve `index.html`. Without this setting, the base URL will not resolve correctly and document generation will fail.{{% /alert %}} +{{% alert color="info" %}}If you use IIS as your reverse proxy, make sure that the [default document](https://learn.microsoft.com/en-us/iis/configuration/system.webserver/defaultdocument/) is configured to serve `index.html`. Without this setting, the base URL does not resolve correctly, and document generation fails.{{% /alert %}}