-
Until now I used a Synology NAS and was easy to set up a reverse proxy for my docker apps. My ISP is giving me a dynamic DNS, so my wan IP can be always accessed via xxx.go.ro Usually, I had like this: HTTPs://xxx.go.ro:8080 -> NAS IP: 8081 -> reverse proxy -> docker container:8080 I've installed Ngix Prix Manager on rpi + created an SSL certificate for xxx.go.ro I've created a port fwd on my router How can I tell Nginx Proxy Manager, to redirect any requests from 8081 to the docker container, port 8080? All the services are running on rpi Docker containers, and this seems to be the problem |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If I got you right... Nginx Proxy Manager and the other services are running on same machine (rpi)?
The domain field is needed to distinguish the service you want to address. But... it might become very scatchi with all your port mappings... The idea of Nginx Proxy Manager is to send all your traffic to Nginx Proxy Manager on default ports (80,443) and based on the domain, dispatch it to the corresponding service. /edit/ I suggest the following:
|
Beta Was this translation helpful? Give feedback.
If I got you right... Nginx Proxy Manager and the other services are running on same machine (rpi)?
if yes, you can use the docker container names to forward your traffic.
e.g. add nextcloud-app-1 as Forward Hostname / IP
The domain field is needed to distinguish the service you want to address.
But... it might become very scatchi with all your port mappings...
The idea of Nginx Proxy Manager is to send all your traffic to Nginx Proxy Manager on default ports (80,443) and based on the domain, dispatch it to the corresponding service.
/…