You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Create the data directories
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
I have searched existing scripts and found no duplicate.
I have searched existing discussions and found no duplicate request.
The application has an official public source repository.
The application is self-hosted and suitable for Proxmox VE Helper-Scripts.
The application appears to be actively maintained and provides official releases, tags, or release tarballs.
I understand that requests outside the project scope may be closed without an extensive explanation.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
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
All reactions