-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using kamal-proxy for accessories #1122
Comments
@shiny can you provide an example of such containers? My implementation of proxy for accessories has been based on PgHero service, which exposes a health check route without an authentication. |
I am using the Docker image resque-web:
image: appwrite/resque-web:1.1.0
proxy:
ssl: true
host: <host>
app_port: 5678
healthcheck:
path: /
env:
clear:
RESQUE_WEB_HOST: <redis-host>
RESQUE_WEB_PORT: 6379
RESQUE_WEB_HTTP_BASIC_AUTH_USER: admin
RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD: <password> Related Repo PS |
This makes sense... As a workaround you can fork @djmb what do you think about the ability of adding |
Another situation, I'm struggling with containers that have two ports, as they are difficult to proxy. This is because it uses both port 9000 and 9001 — 9000 for the API and 9001 for the console. I have to directly publish the HTTP ports instead. |
Is it possible to do some kind of a reverse proxy configuration to accessories? I'd like to have multiple applications on one server, and for each of them to have their own mailpit instance, accessed by it's own sub-domain - so something like this:
APP1: foo.bar.baz.test
MAIL: mail.foo.bar.baz.test (80 -> 8025)
APP2: john.bar.baz.test
MAIL: mail.john.bar.baz.test (80 -> 8025)
The text was updated successfully, but these errors were encountered: