tinyfilemanager icon indicating copy to clipboard operation
tinyfilemanager copied to clipboard

Anyone using it with traefik

Open jTd7bPLFb opened this issue 3 years ago • 2 comments

Any how-to to use it behind traefik reverse proxy? I have no idea how to get it working, after 3 hours.

thanks

jTd7bPLFb avatar Mar 09 '22 21:03 jTd7bPLFb

Hi, yes work fine behind it. My yml file for traefik :

http: routers: router-files: rule: "Host(tinyfilemanager.mydomain.com)" service: service-files entryPoints: - websecure tls: certResolver: letsencrypt services: service-files: loadBalancer: servers: - url: "http://xxx.xxx.xxx.xxx/"

titrax35 avatar Mar 16 '22 17:03 titrax35

I use labels for traefik 2.x with docker

` labels:

  - "traefik.enable=true"

  - "traefik.http.routers.tinyfilemanager.entrypoints=secure"

  - "traefik.http.routers.tinyfilemanager.rule=Host(`tinyfilemanager.yourdomain.tld`)"

  - "traefik.http.services.tinyfilemanager.loadbalancer.server.port=80"`

systemswizard avatar Jan 26 '24 04:01 systemswizard