Files
truecharts/charts/stable/nginx-proxy-manager/values.yaml
T
TrueCharts Bot d037db5218 feat(nginx-proxy-manager): update image docker.io/jc21/nginx-proxy-manager 2.13.7 → 2.14.0 (#45150)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jc21/nginx-proxy-manager](https://redirect.github.com/jc21/nginx-proxy-manager)
| minor | `3c5acf6` → `2aa69b3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>jc21/nginx-proxy-manager
(docker.io/jc21/nginx-proxy-manager)</summary>

###
[`v2.14.0`](https://redirect.github.com/NginxProxyManager/nginx-proxy-manager/releases/tag/v2.14.0)

[Compare
Source](https://redirect.github.com/jc21/nginx-proxy-manager/compare/v2.13.7...v2.14.0)

<p>
<img
src="https://img.shields.io/badge/openresty-1.27.1.2-00DED7.svg?style=for-the-badge">
<img
src="https://img.shields.io/badge/certbot-5.3.1-00C6DE.svg?style=for-the-badge">
<img
src="https://img.shields.io/badge/s6overlay-3.2.1.0-00A8DE.svg?style=for-the-badge">
</p>

> \[!WARNING]
> As of this version, this project no longer builds for armv7/armhf
architectures.

#### Changes

- Add "Trust Upstream Forwarded Proto Headers" advanced proxy host
config (thanks
[@&#8203;jerry-yuan](https://redirect.github.com/jerry-yuan))
- Fix disabling 2fa (thanks
[@&#8203;7heMech](https://redirect.github.com/7heMech))
- Added DNS plugin for ArvanCloud provider (thanks
[@&#8203;kiaxseventh](https://redirect.github.com/kiaxseventh))
- Update Slovak translation (thanks
[@&#8203;dodog](https://redirect.github.com/dodog))
- Fix uploading of custom certificates (thanks
[@&#8203;Tech-no-1](https://redirect.github.com/Tech-no-1))
- Massive amount of dependency updates

#### Docker images

-
[jc21/nginx-proxy-manager:latest](https://hub.docker.com/layers/jc21/nginx-proxy-manager/latest/images/sha256-a142e4adf94638fe4f2a28fa1bae87ca590e11010bf1ec5babf8b06d54fb1d1c)
-
[jc21/nginx-proxy-manager:2](https://hub.docker.com/layers/jc21/nginx-proxy-manager/2/images/sha256-a142e4adf94638fe4f2a28fa1bae87ca590e11010bf1ec5babf8b06d54fb1d1c)
-
[jc21/nginx-proxy-manager:2.14.0](https://hub.docker.com/layers/jc21/nginx-proxy-manager/2.14.0/images/sha256-a142e4adf94638fe4f2a28fa1bae87ca590e11010bf1ec5babf8b06d54fb1d1c)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44LjUiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjUiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXBwL25naW54LXByb3h5LW1hbmFnZXIiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2026-02-21 11:04:38 +00:00

87 lines
2.0 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
repository: docker.io/jc21/nginx-proxy-manager
pullPolicy: IfNotPresent
tag: 2.14.0@sha256:2aa69b382a384b676c0d4f1d6f2eac40ecd478fcf7af1cfb3f9f1d3cd0c81e12
service:
main:
ports:
main:
targetPort: 81
protocol: http
port: 10582
web:
enabled: true
ports:
web:
enabled: true
targetPort: 80
protocol: http
port: 10583
websecure:
enabled: true
ports:
websecure:
enabled: true
targetPort: 443
protocol: https
port: 10584
persistence:
data:
enabled: true
mountPath: /data
size: 256Gi
letsencrypt:
enabled: true
mountPath: /etc/letsencrypt
size: 256Gi
mariadb:
enabled: true
mariadbUsername: npm
mariadbDatabase: npm
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
readiness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
startup:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
env:
DISABLE_IPV6: true
DB_MYSQL_PORT: 3306
DB_MYSQL_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
DB_MYSQL_USER: "{{ .Values.mariadb.mariadbUsername }}"
DB_MYSQL_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_MYSQL_PASSWORD: "{{ .Values.mariadb.password }}"