Closed reyemtm closed 2 years ago
Figured it out, you need to map the port in the Advanced section (the Port in the Domains section does nothing since there is no domain) then connect to the non-exposed app via the project name underscore app name:
http://project_myapp:7800
.
Awesome!
The way you map the port, will expose the service to the internet. If you want to access it only on the internal network, you should use the name of the server and the port. If you project is called "abc" and the service is called "api", the full service name will be abc_api
, and you should be able to connect on http://abc_api:7800
. Can you try this?
yep that worked - already figured it out but this is exactly it - works perfect.
On Thu, Jul 7, 2022 at 1:37 PM Andrei Canta @.***> wrote:
The way you map the port, will expose the service to the internet. If you want to access it only on the internal network, you should use the name of the server and the port. If you project is called "abc" and the service is called "api", the full service name will be abc_api, and you should be able to connect on http://abc_api:7800. Can you try this?
— Reply to this email directly, view it on GitHub https://github.com/easypanel-io/community/issues/60#issuecomment-1177980361, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABQ2HUOOICQS65JOMQ33RCTVS4IUVANCNFSM525UVQ4A . You are receiving this because you modified the open/close state.Message ID: @.***>
-- Malcolm T Meyer peaks.getbounds.com pandemix.getbounds.com www.getbounds.com
I have an App that is an API that I want to proxy with NGINX - so I need to connect to this app from another NGINX App - can anyone help on the connection to the api App - say the app is called "myapi" with exposed port 7800. I have the "PORT" set to 7800 which is the internal port in my api App. I do not want my api app service exposed to the internet, just NGINX. I thought I could proxy in NGINX via http://localhost:7800 or http://myapi:7800 but neither work. The api App is running. This setup works well with docker-compose, just have not figured out how to adjust my setup for easypanel.