Skip to content

Commit 633501d

Browse files
committed
docs: clarify hostname requires https:// prefix
1 parent 1c4c36a commit 633501d

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

docs/ce/self-host/deploy-helm.mdx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
8787
</Step>
8888

8989
<Step title="Configure initial secrets">
90-
Configure the authentication and hostname settings. Make sure the hostname matches your ingress configuration:
90+
Configure the authentication and hostname settings:
9191

9292
```yaml values.yaml
9393
digger:
9494
secret:
9595
httpBasicAuthUsername: "admin"
9696
httpBasicAuthPassword: "<strong-password>" # CHANGE THIS
9797
bearerAuthToken: "<strong-token>" # CHANGE THIS
98-
hostname: "digger.example.com" # MUST match your ingress host
98+
hostname: "https://digger.example.com" # Include https:// prefix!
9999
githubOrg: "your-github-org" # Your GitHub organization name
100100

101101
# GitHub App credentials - leave empty for now
@@ -106,9 +106,18 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
106106
githubWebhookSecret: ""
107107
```
108108

109+
<Note>
110+
**Hostname configuration is different from ingress:**
111+
- Ingress host: `digger.example.com` (no protocol)
112+
- Secret hostname: `https://digger.example.com` (requires https:// prefix)
113+
114+
For example:
115+
- If your ingress host is `digger.35.232.52.175.nip.io`
116+
- Your secret hostname should be `https://digger.35.232.52.175.nip.io`
117+
</Note>
118+
109119
<Warning>
110120
**Important**:
111-
- The `hostname` must exactly match the host you configured in the ingress step
112121
- The `githubOrg` must be your actual GitHub organization name where you'll install the app
113122
- Change all default passwords and tokens
114123
</Warning>
@@ -246,7 +255,7 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
246255
httpBasicAuthUsername: "admin"
247256
httpBasicAuthPassword: "secure-password-123"
248257
bearerAuthToken: "secure-bearer-token-456"
249-
hostname: "digger.example.com"
258+
hostname: "https://digger.example.com" # Include https:// prefix
250259

251260
githubOrg: "your-github-org"
252261
githubAppID: "123456"

0 commit comments

Comments
 (0)