From a177b6829e04ecd34bb0c706571710fb2dd9b900 Mon Sep 17 00:00:00 2001 From: IONOS | Deploy Now Support Account <100566022+ionos-deploy-now-support@users.noreply.github.com> Date: Thu, 30 Oct 2025 15:59:16 +0100 Subject: [PATCH 1/2] Update Database doc --- content/docs/database.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/docs/database.md b/content/docs/database.md index 21bfa36..dc7c4e0 100644 --- a/content/docs/database.md +++ b/content/docs/database.md @@ -24,6 +24,8 @@ You can maintain configuration files such as `.env` directly in your repository. You can reference them via placeholders such as `DB_PASSWORD={{ .runtime.db.password }}` and we will automatically inject the correct values during the deployment. We support you with this during the project setup. A complete guide can be found under [runtime configuration](https://docs.ionos.space/docs/runtime-configuration/). +In some frameworks, to ensure a reliable database connection, we recommend always URL-encoding the database password—for example, use ${IONOS_DB_PASSWORD.urlEncoded()} in your environment template—and disable any additional URL encoding performed by the framework configuration to avoid double-encoding errors. + ## Access You can access the databases via phpMyAdmin right from your Deploy Now dashboard. Databases are not publicly accessible. From c7ba7a0983a9e187edec97cff5da756f14b44218 Mon Sep 17 00:00:00 2001 From: IONOS | Deploy Now Support Account <100566022+ionos-deploy-now-support@users.noreply.github.com> Date: Fri, 31 Oct 2025 12:04:49 +0100 Subject: [PATCH 2/2] Update database.md --- content/docs/database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/database.md b/content/docs/database.md index dc7c4e0..c80b450 100644 --- a/content/docs/database.md +++ b/content/docs/database.md @@ -24,7 +24,7 @@ You can maintain configuration files such as `.env` directly in your repository. You can reference them via placeholders such as `DB_PASSWORD={{ .runtime.db.password }}` and we will automatically inject the correct values during the deployment. We support you with this during the project setup. A complete guide can be found under [runtime configuration](https://docs.ionos.space/docs/runtime-configuration/). -In some frameworks, to ensure a reliable database connection, we recommend always URL-encoding the database password—for example, use ${IONOS_DB_PASSWORD.urlEncoded()} in your environment template—and disable any additional URL encoding performed by the framework configuration to avoid double-encoding errors. +If you encounter problems with your database connection, we recommend always URL-encoding the database password using ${IONOS_DB_PASSWORD.urlEncoded()} in your environment template and disabling any additional URL encoding performed by the framework configuration to avoid double-encoding errors. ## Access