Download the PHP package stormbyte/traefik-http-config without Composer

On this page you can find all versions of the php package stormbyte/traefik-http-config. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package traefik-http-config

Http Providers for Traefik

This package is meant to provide a easy to use HTTP provider for Traefik.

The http provider can be set up to update in increments.

In the docker-compose folder there is an example setup of a self contained setup with a interval of 5sec updates. As long as the config is valid json it should update every 5sec.

With this package the config will output a valid json for traefik to read.

Http

Service

https://doc.traefik.io/traefik/routing/services/

Add a Http Service to the config $config->setHttpService( <my-service>, <backend-url>);

The return is the HttpService class, \Traefik\Http\Service

With addServer( <backend-url> ) it's possible to add more backend url's

Router

https://doc.traefik.io/traefik/routing/routers/

Add a Http Router to the config $config->setHttpRouter( <my-router>, <rule>, <my-service> )

Add the entryPoints with an array ->setEntryPoints( [ <my-entrypoint> ] )

Add middlewares with an array ->setMiddlewares( [ <my-middleware> ] )

Add tls to enable SSL ->setTls(true)

Middleware

https://doc.traefik.io/traefik/middlewares/overview/

Add a Http Middleware the the config $config->addMiddleWare( <my-middleware>, <MiddlewareConfigInterface> )

Possible classes

Tcp

Service

https://doc.traefik.io/traefik/routing/services/#configuring-tcp-services

$config->setTcpService( <my-service>, <backend-url>)

Router

https://doc.traefik.io/traefik/routing/routers/#configuring-tcp-routers

$config->setTcpRouter( <my-tcp-router>, <rule>, <my-tcp-service> ) ->setEntryPoints( [ <my-entrypoint> ] ) ->setTls(true)

Udp

Service

https://doc.traefik.io/traefik/routing/services/#configuring-udp-services

$config->setUpdService( <my-service>, <backend-url>)

Router

https://doc.traefik.io/traefik/routing/routers/#configuring-udp-routers

$config->setUdpRouter( <my-udp-router>, <rule>, <my-udp-service> ) ->setEntryPoints( [ <my-entrypoint> ] ) ->setTls(true)

Return config

echo $config->getJsonConfig()

TODO

Support for:


All versions of traefik-http-config with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package stormbyte/traefik-http-config contains the following files

Loading the files please wait ....