{"id":37135753,"url":"https://github.com/miromani4/traefik-plugin-adminapi_webui","last_synced_at":"2026-01-14T15:49:37.063Z","repository":{"id":221987795,"uuid":"755953783","full_name":"Miromani4/traefik-plugin-AdminAPI_WebUI","owner":"Miromani4","description":"Admin API","archived":false,"fork":false,"pushed_at":"2025-09-23T14:16:47.000Z","size":2357,"stargazers_count":15,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-23T16:11:39.492Z","etag":null,"topics":["traefik","traefik-plugin"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Miromani4.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-11T15:15:59.000Z","updated_at":"2025-09-23T14:08:18.000Z","dependencies_parsed_at":"2024-02-11T16:38:09.530Z","dependency_job_id":"dc26dd21-c826-414c-895e-82ff5ea68d3c","html_url":"https://github.com/Miromani4/traefik-plugin-AdminAPI_WebUI","commit_stats":null,"previous_names":["miromani4/traefik-plugin-adminapi_webui"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/Miromani4/traefik-plugin-AdminAPI_WebUI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miromani4%2Ftraefik-plugin-AdminAPI_WebUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miromani4%2Ftraefik-plugin-AdminAPI_WebUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miromani4%2Ftraefik-plugin-AdminAPI_WebUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miromani4%2Ftraefik-plugin-AdminAPI_WebUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Miromani4","download_url":"https://codeload.github.com/Miromani4/traefik-plugin-AdminAPI_WebUI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miromani4%2Ftraefik-plugin-AdminAPI_WebUI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28425100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T15:24:48.085Z","status":"ssl_error","status_checked_at":"2026-01-14T15:23:41.940Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["traefik","traefik-plugin"],"created_at":"2026-01-14T15:49:36.531Z","updated_at":"2026-01-14T15:49:37.050Z","avatar_url":"https://github.com/Miromani4.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# AdminAPI_WebUI Plugin for Traefik\n\n\u003cimg style=\"float: left; width: 50px; padding-right: 10px;\" src=\"docs/img/logo.png\"\u003e Extend Traefik’s functionality with a built-in **Administrative API and Web UI** for managing dynamic configuration files.\n\nThis plugin integrates into Traefik as a middleware component, providing an intuitive web interface and REST API to administer dynamic configurations loaded via the file provider.\n\n---\n\n## Setup and Usage\n\n### 1. Configure the Main `traefik.yml` File\n\nTo ensure proper plugin operation, configure the file provider to monitor the directory containing your dynamic configuration files:\n\n```yaml\nproviders:\n  providersThrottleDuration: 20s\n  docker:\n    endpoint: \"unix:///var/run/docker.sock\"\n    exposedByDefault: false\n  file:\n    directory: /tmp/ # Path to your dynamic configuration files\n    watch: true  # Automatically track file changes\n\nexperimental:\n  plugins:\n    traefik_plugin_AdminAPI_WebUI: # Plugin name\n      moduleName: \"github.com/Miromani4/traefik-plugin-AdminAPI_WebUI\"\n      version: \"v1.3.0\" # Use the latest version\n```\n\n### 2. Dynamic Configuration Setup\n\nIn your dynamic configuration file (YAML), define the middleware and attach it to a dedicated router:\n\n```yaml\nhttp:\n  routers:\n    admin-ui-router:\n      rule: \"Host(`admin.localhost`)\"\n      service: noop@internal  # Required placeholder service\n      middlewares:\n        - traefik_plugin_AdminAPI_WebUI\n      tls:\n        {}  # Optional: enable TLS if needed\n\n  middlewares:\n    traefik_plugin_AdminAPI_WebUI:\n      plugin:\n        traefik_plugin_AdminAPI_WebUI:\n          root: \"/tmp/\"  # Path to configuration directory\n```\n\n#### The `root` Parameter\n\nSpecifies the root directory where Traefik monitors dynamic configuration files (`.yml` or `.yaml`). All operations via the web interface are sandboxed within this directory to enforce security and prevent unauthorized filesystem access.\n\n---\n\n## Local Testing\n\nA `docker-compose.yml` file is provided in the repository for quick local deployment and validation:\n\n```bash\ndocker-compose up -d\n```\n\nOnce successfully launched, access the web interface at:  \n👉 [http://admin.localhost](http://admin.localhost)\n\n---\n\n## Key Benefits\n\n- **Seamless Integration** — Operates as a standard Traefik middleware without architectural disruption.\n- **Centralized Control** — Unified access to manage dynamic configurations via UI or API.\n- **Security by Design** — File system access strictly confined via the `root` parameter.\n- **GitOps Ready** — Fully compatible with declarative infrastructure management workflows.\n\n---\n\nThis plugin is ideal for DevOps and platform engineering teams seeking to automate and simplify microservices infrastructure management through a unified, self-service interface.\n\n---\n\n## Screenshots \u0026 Features\n\n### Interface Overview\n\n![Screenshot 1](https://github.com/Miromani4/traefik-plugin-AdminAPI_WebUI/blob/main/docs%2Fimg%2Fadmin_panel.png)\n\n#### YAML Structure Validation \u0026 Error Highlighting\n\n![Screenshot 2](https://github.com/Miromani4/traefik-plugin-AdminAPI_WebUI/blob/main/docs%2Fimg%2Fadmin_panel_error.png)\n\n#### Keyboard Shortcuts\n\n`Ctrl + /` — Toggle comment/uncomment for selected line(s)\n\n---\n\n\u003e 💬 **Have questions or feature requests?**  \n\u003e Please open an issue on GitHub — we welcome your feedback and contributions!\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiromani4%2Ftraefik-plugin-adminapi_webui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiromani4%2Ftraefik-plugin-adminapi_webui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiromani4%2Ftraefik-plugin-adminapi_webui/lists"}