Compare commits

..

No commits in common. "8c446c9e1599ffa9b1e242b70e8e6e78165da8b4" and "dad5c65ae90d0b6ca59c4b251c1d5c5f6d04e218" have entirely different histories.

2 changed files with 2 additions and 12 deletions

View file

@ -70,7 +70,7 @@ http {
# The following rule is only needed for the Social app.
# Uncomment it if you're planning to use this app.
rewrite ^/.well-known/webfinger /public.php?service=webfinger last;
#rewrite ^/.well-known/webfinger /public.php?service=webfinger last;
location = /.well-known/carddav {
return 301 https://$host:443/remote.php/dav;

View file

@ -3,11 +3,10 @@ version: "3.3"
services:
traefik:
image: traefik:v2.3
image: traefik:v2.4
restart: unless-stopped
command:
- "--api.insecure=false"
- "--api.dashboard=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
#- "--log.level=DEBUG"
@ -30,15 +29,6 @@ services:
- ${VOLUMES_PATH}/letsencrypt:/letsencrypt
- $PWD/tls.toml:/etc/traefik/tls.toml
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashboard.rule=Host(`traefik.${DOMAIN}`)"
- "traefik.http.routers.dashboard.service=api@internal"
- "traefik.http.routers.dashboard.entrypoints=websecure"
- "traefik.http.routers.dashboard.tls.certresolver=myresolver"
- "traefik.http.routers.gitea.tls.options=intermediate@file"
- "traefik.http.routers.dashboard.middlewares=auth"
- "traefik.http.middlewares.auth.basicauth.users=${HTPASSWD}"
- "traefik.docker.network=web"
- "docker.group=web"