DokployD
Dokploy11mo ago
9 replies
afunworm

How to use Dokploy's Traefik for Reverse Proxy Only?

I have an app that is already running at 127.0.0.1:8888.

How do I deploy an application that does nothing except forwarding all requests from example.com to 127.0.0.1:8888?

What I did so far:
1. Create an application.
2. Create a domain for that application.
3. Go inside Traefik File System > Dynamic > example-e4e1ia.yml and make the following changes:
  services:
    example-e4e1ia-service-17:
      loadBalancer:
        servers:
          - url: http://127.0.0.1:3000
        passHostHeader: true

4. I go inside the Application again and click "Deploy".

This is what is shown in the deployment tab:
Initializing deployment


And this is what is shown in the log tab:
Error response from daemon: No such container: select-a-container
Was this page helpful?