Skip to content

An app that can be used to proxy to a datastore service's web ui

License

Notifications You must be signed in to change notification settings

dokku/service-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

service-proxy

An app that can be provisioned on Dokku to provide a proxy between the service's web ui and your browser.

Usage

Supported Services

Deploying

In this example, a rabbitmq service named lollipop will be exposed under the app service-proxy.

To start, we'll need to create an app for the service proxy.

dokku apps:create service-proxy

In order to proxy to a given service, some config variables need to be provisioned.

At a minimum, both SERVICE_NAME and SERVICE_TYPE should be set where:

  • SERVICE_NAME: the name of the service, eg. my-database
  • SERVICE_TYPE: the type of the service, eg. rabbitmq (this is the command prefix)

These will be used to infer the host/port to fetch. For the above example, the host would be dokku-rabbitmq-my-database.

The port will be infered to be the first port exposed by the service. This may be incorrect, especially when the first port is a tcp port for communication to the datastore itself. In those cases, a SERVICE_PORT environment variable can be set to force a specific port number.

In the following example, we configure for rabbitmq:

dokku config:set service-proxy SERVICE_NAME=queue SERVICE_TYPE=rabbitmq SERVICE_PORT=15672

Next, we'll create the service itself and link it to our app:

# create the rabbitmq service
dokku rabbitmq:create queue

# link the rabbitmq service
dokku rabbitmq:link queue service-proxy

Finally, the service-proxy can be deployed, after which the service will be available on the app's url.

dokku git:from-image service-proxy dokku/service-proxy:latest

Since the service proxy is treated as an app, it can be configured to use any app-related setting. For example, letsencrypt can be used to provision SSL certificates.

dokku letsencrypt:enable service-proxy