middleware-manager
A microservice that allows you to add custom middleware to Pangolin / Traefik resources.
File Explorer
Download Latest Version (.zip)- main.yml
- test.yml
- errors.go
- errors_test.go
- common.go
- common_test.go
- config.go
- config_test.go
- datasource.go
- datasource_test.go
- handlers_test.go
- middlewares.go
- middlewares_test.go
- mtls.go
- mtls_test.go
- pagination.go
- pagination_test.go
- plugin_handler.go
- plugin_handler_test.go
- proxy.go
- proxy_test.go
- resources.go
- resources_test.go
- security.go
- security_test.go
- services.go
- services_test.go
- traefik_handler.go
- traefik_handler_test.go
- transaction.go
- server.go
- server_test.go
- cache.go
- cache_test.go
- config_test.go
- defaults.go
- service_default.go
- templates.yaml
- templates_services.yaml
- cleanup.go
- database_test.go
- db.go
- migrations.sql
- sqlite_cgo.go
- sqlite_nocgo.go
- transaction.go
- layout.tsx
- page.tsx
- route.ts
- page.tsx
- layout.tsx
- route.ts
- route.tsx
- global.css
- layout.tsx
- meta.json
- overview.mdx
- config-overview.mdx
- data-sources.mdx
- environment.mdx
- meta.json
- templates.mdx
- dev-guide.mdx
- meta.json
- deploy-pangolin.mdx
- deploy-standalone.mdx
- meta.json
- onboarding.mdx
- backups.mdx
- meta.json
- runbook.mdx
- troubleshooting.mdx
- meta.json
- revert-traefik.mdx
- meta.json
- risks.mdx
- dashboard.mdx
- meta.json
- middlewares.mdx
- plugin-hub.mdx
- resources.mdx
- security-mtls.mdx
- services.mdx
- settings.mdx
- traefik-explorer.mdx
- index.mdx
- meta.json
- test.mdx
- layout.shared.tsx
- source.ts
- .gitignore
- mdx-components.tsx
- next.config.mjs
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- source.config.ts
- tsconfig.json
- testutil.go
- datasource.go
- datasource_test.go
- middleware.go
- middleware_test.go
- middleware_types.go
- middleware_types_test.go
- mtls.go
- plugin.go
- resource.go
- security.go
- security_test.go
- service.go
- service_test.go
- traefik_api.go
- traefik_api_test.go
- traefik_types.go
- traefik_types_test.go
- cert_generator.go
- cert_generator_test.go
- config_generator.go
- config_generator_test.go
- config_manager.go
- config_manager_test.go
- config_proxy.go
- config_proxy_test.go
- duplicate_detector.go
- duplicate_detector_test.go
- http_pool.go
- http_pool_test.go
- json_decoder.go
- json_decoder_test.go
- pangolin_fetcher.go
- pangolin_fetcher_test.go
- plugin_fetcher.go
- plugin_fetcher_test.go
- resource_fetcher.go
- resource_fetcher_test.go
- resource_watcher.go
- resource_watcher_test.go
- service_fetcher.go
- service_fetcher_test.go
- service_watcher.go
- service_watcher_test.go
- test_helpers_test.go
- traefik_fetcher.go
- traefik_fetcher_test.go
- ConfirmationModal.tsx
- DarkModeToggle.tsx
- EmptyState.tsx
- ErrorMessage.tsx
- Footer.tsx
- Header.tsx
- index.ts
- LoadingSpinner.tsx
- Dashboard.tsx
- index.ts
- ResourceSummary.tsx
- StatCard.tsx
- index.ts
- MiddlewareForm.tsx
- MiddlewaresList.tsx
- CataloguePluginCard.tsx
- index.ts
- PluginCard.tsx
- PluginHub.tsx
- index.ts
- ResourceDetail.tsx
- ResourcesList.tsx
- CAManager.tsx
- CertImportGuide.tsx
- ClientCertList.tsx
- SecurityHub.tsx
- index.ts
- ServiceForm.tsx
- ServicesList.tsx
- DataSourceSettings.tsx
- index.ts
- EntrypointList.tsx
- index.ts
- MiddlewareTabs.tsx
- OverviewCards.tsx
- RouterTabs.tsx
- ServiceTabs.tsx
- VersionInfo.tsx
- accordion.tsx
- alert-dialog.tsx
- alert.tsx
- badge.tsx
- button.tsx
- card.tsx
- checkbox.tsx
- dialog.tsx
- dropdown-menu.tsx
- index.ts
- input.tsx
- label.tsx
- select.tsx
- skeleton.tsx
- spinner.tsx
- switch.tsx
- table.tsx
- tabs.tsx
- textarea.tsx
- toast.tsx
- toaster.tsx
- tooltip.tsx
- error-boundary.tsx
- loading-skeleton.tsx
- theme-provider.tsx
- theme-toggle.tsx
- use-toast.ts
- utils.ts
- api.ts
- appStore.ts
- dataSourceStore.ts
- index.ts
- middlewareStore.ts
- mtlsStore.ts
- pluginStore.ts
- resourceStore.ts
- securityStore.ts
- serviceStore.ts
- traefikStore.ts
- globals.css
- datasource.ts
- index.ts
- middleware.ts
- mtls.ts
- plugin.ts
- resource.ts
- security.ts
- service.ts
- traefik.ts
- App.tsx
- main.tsx
- vite-env.d.ts
- components.json
- index.html
- package-lock.json
- package.json
- postcss.config.js
- tailwind.config.ts
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- id_normalizer.go
- id_normalizer_test.go
- .env.example
- .gitattributes
- .gitignore
- docker-compose.yml
- Dockerfile
- go.mod
- go.sum
- LICENSE
- main.go
- Makefile
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/hhftechnology/middleware-manager
Downloads the entire project code from GitHub to your computer.
cd middleware-manager
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' middleware-manager
Type this command into your terminal and run it.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Node.js
EasyPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
Pulled directly from this repo's README.
4. Go
MediumPrerequisites
go run main.go
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
Pulled directly from this repo's README.
5. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
