[GH-ISSUE #1506] Streams not working. #1154

Closed
opened 2026-02-26 06:35:59 +03:00 by kerem · 8 comments
Owner

Originally created by @FreshImmuc on GitHub (Oct 21, 2021).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1506

Hey, I tried to use streams with minecraft but it doesnt work.
image
What did I do wrong? it says online

Originally created by @FreshImmuc on GitHub (Oct 21, 2021). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1506 Hey, I tried to use streams with minecraft but it doesnt work. ![image](https://user-images.githubusercontent.com/65733898/138190372-4ee805f7-9c23-426b-a81a-e1cab21bf2d0.png) What did I do wrong? it says online
kerem 2026-02-26 06:35:59 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@chaptergy commented on GitHub (Oct 21, 2021):

Have you added the port to the port section of your docker-compose file to expose it to the outside of the container? Potentially also port-forwarded it in your router if you want your server to be available from the internet?

<!-- gh-comment-id:948357134 --> @chaptergy commented on GitHub (Oct 21, 2021): Have you added the port to the port section of your docker-compose file to expose it to the outside of the container? Potentially also port-forwarded it in your router if you want your server to be available from the internet?
Author
Owner

@FreshImmuc commented on GitHub (Oct 21, 2021):

Server is available in the Internet but the Docker config thing is probably the reason.

<!-- gh-comment-id:948357985 --> @FreshImmuc commented on GitHub (Oct 21, 2021): Server is available in the Internet but the Docker config thing is probably the reason.
Author
Owner

@chaptergy commented on GitHub (Oct 21, 2021):

Then you'll just need to add the port to the docker-compose like this:

version: '3'
services:
  app:
    ...
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
      - '25566:25566' # Add this line
...
<!-- gh-comment-id:948360527 --> @chaptergy commented on GitHub (Oct 21, 2021): Then you'll just need to add the port to the docker-compose like this: ```yml version: '3' services: app: ... ports: - '80:80' - '81:81' - '443:443' - '25566:25566' # Add this line ... ```
Author
Owner

@technoluc commented on GitHub (Nov 17, 2021):

I'm trying to acces my RDP via Nginx Proxy Manager but i can't get it to work. I've forwarded 3389 to NPM via my router, added 3389:3389 as ports in the docker-compose.yml file and set up a stream incoming 3389 to ${PC_IP}:3389. Am i missing something?

<!-- gh-comment-id:971678443 --> @technoluc commented on GitHub (Nov 17, 2021): I'm trying to acces my RDP via Nginx Proxy Manager but i can't get it to work. I've forwarded 3389 to NPM via my router, added 3389:3389 as ports in the docker-compose.yml file and set up a stream incoming 3389 to ${PC_IP}:3389. Am i missing something?
Author
Owner

@Kambaa commented on GitHub (Apr 3, 2023):

Hello, like @chaptergy have mentioned, first i did add the ports, did a docker-compose down / up, and lastly, adding stream entries (with same ports for in and out, and added related computer local ip), i can access from outside successfully. Things to consider:

  • From internet to your machine -> your router/firewall/modem should direct port to the machine that NPM is working
  • Docker / docker-compose setup on adding port numbers as instructed(do not forget to restart container)
  • and lastly, adding stream entries correctly( outside port, inside machine ip, inside port)

Have a good one!

<!-- gh-comment-id:1495030548 --> @Kambaa commented on GitHub (Apr 3, 2023): Hello, like @chaptergy have mentioned, first i did add the ports, did a docker-compose down / up, and lastly, adding stream entries (with same ports for in and out, and added related computer local ip), i can access from outside successfully. Things to consider: - From internet to your machine -> your router/firewall/modem should direct port to the machine that NPM is working - Docker / docker-compose setup on adding port numbers as instructed(do not forget to restart container) - and lastly, adding stream entries correctly( outside port, inside machine ip, inside port) Have a good one!
Author
Owner

@tbb98 commented on GitHub (Jun 29, 2023):

Hello!

I came across a comment on reddit saying that you have to expicitly specify UDP in the docker-compose file, if it's an UDP stream. In my case, that solved it.

Like this:
- '34197:34197/udp' # Factorio

<!-- gh-comment-id:1613531928 --> @tbb98 commented on GitHub (Jun 29, 2023): Hello! I came across a comment on reddit saying that you have to expicitly specify UDP in the docker-compose file, if it's an UDP stream. In my case, that solved it. Like this: `- '34197:34197/udp' # Factorio`
Author
Owner

@jin8111 commented on GitHub (Mar 22, 2024):

I have a new problem, after port forwarding, I can't use ssl, such as Synology's port 6690

<!-- gh-comment-id:2014202554 --> @jin8111 commented on GitHub (Mar 22, 2024): I have a new problem, after port forwarding, I can't use ssl, such as Synology's port 6690
Author
Owner

@Aerialflame7125 commented on GitHub (Jun 11, 2024):

@jin8111 You would just use the proxy host feature within nginx proxy manager and not the streams for your case.

<!-- gh-comment-id:2161712708 --> @Aerialflame7125 commented on GitHub (Jun 11, 2024): @jin8111 You would just use the proxy host feature within nginx proxy manager and not the streams for your case.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#1154
No description provided.