Compare commits
10 Commits
4.0.0+v3.6
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 005f0235c0 | |||
|
7c6dd3f5a5
|
|||
| 440a7f5228 | |||
|
74193326fb
|
|||
| 57a6aed540 | |||
| ff138864d4 | |||
|
7370ecfa9d
|
|||
|
57e5c49c81
|
|||
| 063d194119 | |||
| 9a46c85735 |
@ -122,8 +122,10 @@ COMPOSE_FILE="compose.yml"
|
||||
|
||||
## Enable prometheus metrics collection
|
||||
## used used by the coop-cloud monitoring stack
|
||||
## BASIC_AUTH should also be enabled
|
||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.metrics.yml"
|
||||
#METRICS_ENABLED=1
|
||||
#METRICS_FQDN=metrics.traefik.example.com
|
||||
|
||||
#####################################################################
|
||||
# File provider directory configuration #
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
> https://docs.traefik.io
|
||||
|
||||
<!-- metadata -->
|
||||
* **Maintainer**: [@p4u1](https://git.coopcloud.tech/p4u1), [@decentral1se](https://git.coopcloud.tech/decentral1se), [@javielico](https://git.coopcloud.tech/javielico)
|
||||
* **Maintainer**: [@p4u1](https://git.coopcloud.tech/p4u1), [@decentral1se](https://git.coopcloud.tech/decentral1se), [@javielico](https://git.coopcloud.tech/javielico), [@moritz](https://git.coopcloud.tech/moritz)
|
||||
* **Status**: `stable`
|
||||
* **Category**: Utilities
|
||||
* **Features**: ?
|
||||
|
||||
4
abra.sh
4
abra.sh
@ -1,3 +1,3 @@
|
||||
export TRAEFIK_YML_VERSION=v29
|
||||
export FILE_PROVIDER_YML_VERSION=v11
|
||||
export TRAEFIK_YML_VERSION=v30
|
||||
export FILE_PROVIDER_YML_VERSION=v12
|
||||
export ENTRYPOINT_VERSION=v5
|
||||
|
||||
@ -4,4 +4,7 @@ services:
|
||||
environment:
|
||||
- GARAGE_RPC_ENABLED
|
||||
ports:
|
||||
- "3901:3901"
|
||||
- target: 3901
|
||||
published: 3901
|
||||
protocol: tcp
|
||||
mode: host
|
||||
|
||||
@ -3,7 +3,3 @@ services:
|
||||
app:
|
||||
environment:
|
||||
- METRICS_ENABLED
|
||||
ports:
|
||||
- target: 8082
|
||||
published: 8082
|
||||
mode: host
|
||||
|
||||
@ -3,7 +3,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: "traefik:v3.6.10"
|
||||
image: "traefik:v3.6.15"
|
||||
# Note(decentral1se): *please do not* add any additional ports here.
|
||||
# Doing so could break new installs with port conflicts. Please use
|
||||
# the usual `compose.$app.yml` approach for any additional ports
|
||||
@ -55,12 +55,12 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
|
||||
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
|
||||
- "coop-cloud.${STACK_NAME}.version=4.0.0+v3.6.10"
|
||||
- "coop-cloud.${STACK_NAME}.version=5.1.1+v3.6.15"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
|
||||
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
||||
|
||||
socket-proxy:
|
||||
image: lscr.io/linuxserver/socket-proxy:3.2.10-r0-ls65
|
||||
image: lscr.io/linuxserver/socket-proxy:3.2.17
|
||||
deploy:
|
||||
endpoint_mode: dnsrr
|
||||
environment:
|
||||
|
||||
@ -30,6 +30,18 @@ http:
|
||||
stsIncludeSubdomains: true
|
||||
stsPreload: true
|
||||
stsSeconds: "31536000"
|
||||
{{ if eq (env "METRICS_ENABLED") "1" }}
|
||||
routers:
|
||||
traefik-metrics:
|
||||
rule: "Host(`{{ env "METRICS_FQDN" }}`)"
|
||||
entrypoints:
|
||||
- web-secure
|
||||
tls:
|
||||
certResolver: {{ env "LETS_ENCRYPT_ENV" }}
|
||||
middlewares:
|
||||
- basicauth@file
|
||||
service: prometheus@internal
|
||||
{{ end }}
|
||||
|
||||
tls:
|
||||
options:
|
||||
|
||||
10
release/5.0.0+v3.6.10
Normal file
10
release/5.0.0+v3.6.10
Normal file
@ -0,0 +1,10 @@
|
||||
/!\ BREAKING CHANGE: Change metrics endpoint to use https instead of http 8082
|
||||
to prevent sending BASIC_AUTH in plaintext
|
||||
|
||||
The metrics endpoint changed from http on port 8082 to the web-secure
|
||||
endpoint to prevent sending BASIC_AUTH credentials plaintext. If metrics is
|
||||
enabled you need to configure a FQDN for it by setting METRICS_FQDN in your
|
||||
.env. You should also update the scrape config files in prometheus for
|
||||
Traefik metrics from port 8082 to the new FQDN.
|
||||
|
||||
All changes: https://git.coopcloud.tech/coop-cloud/traefik/compare/5.0.0+v3.6.10...4.0.0+v3.6.10
|
||||
1
release/5.1.0+v3.6.11
Normal file
1
release/5.1.0+v3.6.11
Normal file
@ -0,0 +1 @@
|
||||
Patched CVES: CVE-2026-32595 and CVE-2026-32305
|
||||
@ -94,13 +94,6 @@ entrypoints:
|
||||
irc:
|
||||
address: ":6697"
|
||||
{{- end }}
|
||||
{{- if eq (env "METRICS_ENABLED") "1" }}
|
||||
metrics:
|
||||
address: ":8082"
|
||||
http:
|
||||
middlewares:
|
||||
- basicauth@file
|
||||
{{- end }}
|
||||
{{- if eq (env "MATRIX_FEDERATION_ENABLED") "1" }}
|
||||
matrix-federation:
|
||||
address: ":9001"
|
||||
@ -122,7 +115,8 @@ ping:
|
||||
{{- if eq (env "METRICS_ENABLED") "1" }}
|
||||
metrics:
|
||||
prometheus:
|
||||
entryPoint: metrics
|
||||
entryPoint: web-secure
|
||||
manualRouting: true
|
||||
addRoutersLabels: true
|
||||
addServicesLabels: true
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user