Compare commits
8
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28778ca411
|
||
|
|
5af432db59 | ||
|
|
a5daf26196 | ||
|
|
e6ba592774 | ||
|
|
39e52668d2 | ||
|
|
ca4f4113d9 | ||
|
|
0059b9011f | ||
|
|
7c1c36e23a |
+25
-2
@@ -139,10 +139,14 @@ WRITE_TIMEOUT=0s
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
## Enable prometheus metrics collection
|
## Enable prometheus metrics collection
|
||||||
## used used by the coop-cloud monitoring stack
|
## Metrics are served unauthenticated on :8082, reachable only from
|
||||||
## BASIC_AUTH should also be enabled
|
## other services on the proxy network (e.g. monitoring-ng's Alloy,
|
||||||
|
## which auto-discovers it via the prometheus.io/scrape label)
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.metrics.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.metrics.yml"
|
||||||
#METRICS_ENABLED=1
|
#METRICS_ENABLED=1
|
||||||
|
|
||||||
|
## Setting METRICS_FQDN also adds a public metrics endpoint (behind
|
||||||
|
## basic auth). BASIC_AUTH should be enabled for this.
|
||||||
#METRICS_FQDN=metrics.traefik.example.com
|
#METRICS_FQDN=metrics.traefik.example.com
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
@@ -211,6 +215,8 @@ WRITE_TIMEOUT=0s
|
|||||||
## Garage
|
## Garage
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.garage.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.garage.yml"
|
||||||
#GARAGE_RPC_ENABLED=1
|
#GARAGE_RPC_ENABLED=1
|
||||||
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.garage-admin.yml"
|
||||||
|
#GARAGE_ADMIN_ENABLED=1
|
||||||
|
|
||||||
## Nextcloud Talk HPB
|
## Nextcloud Talk HPB
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.nextcloud-talk-hpb.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.nextcloud-talk-hpb.yml"
|
||||||
@@ -235,3 +241,20 @@ WRITE_TIMEOUT=0s
|
|||||||
|
|
||||||
## Access logs
|
## Access logs
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.access-log.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.access-log.yml"
|
||||||
|
|
||||||
|
## Behind a reverse proxy
|
||||||
|
#
|
||||||
|
# YAML array of subnets from which Traefik's trusts the x-real-ip
|
||||||
|
# header when behind a reverse proxy.
|
||||||
|
#
|
||||||
|
# https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#opt-forwardedHeaders-trustedIPs
|
||||||
|
#TRUSTED_IPS="['10.13.12.1']" # 10.13.12.1 is an example
|
||||||
|
|
||||||
|
## Rate limits
|
||||||
|
# You can enable universal rate limits by setting RATE_LIMIT_EVERYTHING
|
||||||
|
# to true, otherwise each app needs to export their own middleware labels.
|
||||||
|
#
|
||||||
|
# https://doc.traefik.io/traefik/reference/routing-configuration/http/middlewares/ratelimit/
|
||||||
|
#RATE_LIMIT_EVERYTHING=false
|
||||||
|
#RATE_LIMIT_AVERAGE=100
|
||||||
|
#RATE_LIMIT_BURST=200
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
export TRAEFIK_YML_VERSION=v33
|
export TRAEFIK_YML_VERSION=v37
|
||||||
export FILE_PROVIDER_YML_VERSION=v12
|
export FILE_PROVIDER_YML_VERSION=v14
|
||||||
export ENTRYPOINT_VERSION=v5
|
export ENTRYPOINT_VERSION=v5
|
||||||
export ANUBIS_YML_VERSION=v1
|
export ANUBIS_YML_VERSION=v1
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
environment:
|
||||||
|
- GARAGE_ADMIN_ENABLED
|
||||||
|
ports:
|
||||||
|
- target: 3903
|
||||||
|
published: 3903
|
||||||
|
protocol: tcp
|
||||||
|
mode: host
|
||||||
@@ -3,3 +3,9 @@ services:
|
|||||||
app:
|
app:
|
||||||
environment:
|
environment:
|
||||||
- METRICS_ENABLED
|
- METRICS_ENABLED
|
||||||
|
deploy:
|
||||||
|
labels:
|
||||||
|
# lets monitoring-ng's Alloy auto-discover and scrape metrics-internal
|
||||||
|
# via the proxy network.
|
||||||
|
- "prometheus.io/scrape=true"
|
||||||
|
- "prometheus.io/port=8082"
|
||||||
|
|||||||
+3
-3
@@ -3,7 +3,7 @@ version: "3.8"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: "traefik:v3.7.10"
|
image: "traefik:v3.7.13"
|
||||||
# Note(decentral1se): *please do not* add any additional ports here.
|
# Note(decentral1se): *please do not* add any additional ports here.
|
||||||
# Doing so could break new installs with port conflicts. Please use
|
# Doing so could break new installs with port conflicts. Please use
|
||||||
# the usual `compose.$app.yml` approach for any additional ports
|
# the usual `compose.$app.yml` approach for any additional ports
|
||||||
@@ -57,12 +57,12 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||||
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
|
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
|
||||||
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
|
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
|
||||||
- "coop-cloud.${STACK_NAME}.version=6.1.0+v3.7.10"
|
- "coop-cloud.${STACK_NAME}.version=6.2.0+v3.7.12"
|
||||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
|
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
|
||||||
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
||||||
|
|
||||||
socket-proxy:
|
socket-proxy:
|
||||||
image: lscr.io/linuxserver/socket-proxy:3.4.3
|
image: lscr.io/linuxserver/socket-proxy:3.4.4
|
||||||
deploy:
|
deploy:
|
||||||
endpoint_mode: dnsrr
|
endpoint_mode: dnsrr
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
+15
-1
@@ -22,6 +22,11 @@ http:
|
|||||||
basicAuth:
|
basicAuth:
|
||||||
usersFile: "/run/secrets/usersfile"
|
usersFile: "/run/secrets/usersfile"
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
ip-rate-limit:
|
||||||
|
rateLimit:
|
||||||
|
average: {{ or (env "RATE_LIMIT_AVERAGE") "100" }}
|
||||||
|
burst: {{ or (env "RATE_LIMIT_BURST") "200" }}
|
||||||
|
period: "1s"
|
||||||
security:
|
security:
|
||||||
headers:
|
headers:
|
||||||
frameDeny: true
|
frameDeny: true
|
||||||
@@ -32,6 +37,7 @@ http:
|
|||||||
stsSeconds: "31536000"
|
stsSeconds: "31536000"
|
||||||
{{ if eq (env "METRICS_ENABLED") "1" }}
|
{{ if eq (env "METRICS_ENABLED") "1" }}
|
||||||
routers:
|
routers:
|
||||||
|
{{ if ne (env "METRICS_FQDN") "" }}
|
||||||
traefik-metrics:
|
traefik-metrics:
|
||||||
rule: "Host(`{{ env "METRICS_FQDN" }}`)"
|
rule: "Host(`{{ env "METRICS_FQDN" }}`)"
|
||||||
entrypoints:
|
entrypoints:
|
||||||
@@ -41,6 +47,14 @@ http:
|
|||||||
middlewares:
|
middlewares:
|
||||||
- basicauth@file
|
- basicauth@file
|
||||||
service: prometheus@internal
|
service: prometheus@internal
|
||||||
|
{{ end }}
|
||||||
|
# reachable from other services on the proxy network only (this port
|
||||||
|
# isn't published to the host), without auth
|
||||||
|
traefik-metrics-internal:
|
||||||
|
rule: "PathPrefix(`/`)"
|
||||||
|
entrypoints:
|
||||||
|
- metrics-internal
|
||||||
|
service: prometheus@internal
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
tls:
|
tls:
|
||||||
@@ -61,4 +75,4 @@ tls:
|
|||||||
certificates:
|
certificates:
|
||||||
- certFile: /run/secrets/ssl_cert
|
- certFile: /run/secrets/ssl_cert
|
||||||
keyFile: /run/secrets/ssl_key
|
keyFile: /run/secrets/ssl_key
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
1. compose.metrics.yml now adds prometheus.io/scrape labels so services like monitoring-ng can automatically discover and scrape Traefik's metrics.
|
||||||
@@ -48,6 +48,14 @@ entrypoints:
|
|||||||
to: web-secure
|
to: web-secure
|
||||||
web-secure:
|
web-secure:
|
||||||
address: ":443"
|
address: ":443"
|
||||||
|
{{ if ne (env "TRUSTED_IPS") "" }}
|
||||||
|
forwardedHeaders:
|
||||||
|
trustedIPs: {{ env "TRUSTED_IPS" }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if eq (env "RATE_LIMIT_EVERYTHING") "true" }}
|
||||||
|
middlewares:
|
||||||
|
- "ip-rate-limit@file"
|
||||||
|
{{ end }}
|
||||||
transport:
|
transport:
|
||||||
respondingTimeouts:
|
respondingTimeouts:
|
||||||
readTimeout: {{ env "READ_TIMEOUT" }}
|
readTimeout: {{ env "READ_TIMEOUT" }}
|
||||||
@@ -75,6 +83,10 @@ entrypoints:
|
|||||||
garage-rpc:
|
garage-rpc:
|
||||||
address: ":3901"
|
address: ":3901"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if eq (env "GARAGE_ADMIN_ENABLED") "1" }}
|
||||||
|
garage-admin:
|
||||||
|
address: ":3903"
|
||||||
|
{{- end }}
|
||||||
{{- if eq (env "FOODSOFT_SMTP_ENABLED") "1" }}
|
{{- if eq (env "FOODSOFT_SMTP_ENABLED") "1" }}
|
||||||
foodsoft-smtp:
|
foodsoft-smtp:
|
||||||
address: ":2525"
|
address: ":2525"
|
||||||
@@ -127,6 +139,10 @@ entrypoints:
|
|||||||
onion:
|
onion:
|
||||||
address: ":9052"
|
address: ":9052"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if eq (env "METRICS_ENABLED") "1" }}
|
||||||
|
metrics-internal:
|
||||||
|
address: ":8082"
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
ping:
|
ping:
|
||||||
entryPoint: web
|
entryPoint: web
|
||||||
|
|||||||
Reference in New Issue
Block a user