prasathmani / tinyfilemanager

Single-file PHP file manager, browser and manage your files efficiently and easily with tinyfilemanager
https://tinyfilemanager.github.io
GNU General Public License v3.0
4.63k stars 1.63k forks source link

Anyone using it with traefik #743

Open jTd7bPLFb opened 2 years ago

jTd7bPLFb commented 2 years ago

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

thanks

titrax35 commented 2 years ago

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

http: routers: router-files: rule: "Host(tinyfilemanager.mydomain.com)" service: service-files entryPoints:

systemswizard commented 5 months ago

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"`