[Script request]: Traefik Manager #15365
Replies: 1 comment
-
|
its so hard to check the requirements?
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Application Name
Traefik Manager
Official Website
https://traefik-manager.xyzlab.dev/
Source Repository
https://github.com/chr0nzz/traefik-manager
Description
A clean, self-hosted web UI for managing your Traefik reverse proxy trough a WEB-Ui
Why should this be added?
Especially for newbies this would be a great oppoturnity to get startet with traefik and crowdsec
Installation Notes
https://traefik-manager.xyzlab.dev/linux.html
curl -fsSL https://get-traefik.xyzlab.dev | bash
Install
git clone https://github.com/chr0nzz/traefik-manager.git /opt/traefik-manager
cd /opt/traefik-manager
2. Create a virtual environment and install dependencies
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt gunicorn
3. Download vendor assets and build CSS
sudo bash scripts/setup-assets.sh
This downloads Monaco, fonts, icons, and other vendored JS libraries, then compiles Tailwind CSS. These are excluded from the Git repository (they are built into the Docker image at build time). sudo is needed to install the tailwindcss binary to /usr/local/bin if it is not already present.
mkdir -p /var/lib/traefik-manager/backups
4. Test run
CONFIG_PATH=/etc/traefik/dynamic.yml
BACKUP_DIR=/var/lib/traefik-manager/backups
SETTINGS_PATH=/var/lib/traefik-manager/manager.yml
COOKIE_SECURE=false
/opt/traefik-manager/venv/bin/gunicorn
--bind 0.0.0.0:5000
--workers 1
--chdir /opt/traefik-manager
app:app
Open http://your-server:5000/ - the setup wizard will guide you through the rest.
Due Diligence
Beta Was this translation helpful? Give feedback.
All reactions