m1k1o / neko

A self hosted virtual browser that runs in docker and uses WebRTC.
https://neko.m1k1o.net/
Apache License 2.0
5.96k stars 449 forks source link

HTTP Port change not working #297

Closed NN-Binary closed 1 year ago

NN-Binary commented 1 year ago

Hi,

When changing port 8080 to 8082 in docker-compose.yaml

        ports:
            - "8082:8082"
            - "52101-52201:52101-52201/udp"

It isn't reachable anymore, locally or externally, port 8080 (default) works fine, but basically any other port does not work, is it an ongoing issue? Is there a special setup to do?

NOTE: The docker container starts and is up and running, it's simply not accessible anymore via http://ip:8082

m1k1o commented 1 year ago

Hi, you need to keep the port inside docker :8080 since you are only changing your port outside of docker. Therefore change it to "8082:8080"

https://neko.m1k1o.net/#/getting-started/?id=why-so-many-ports image

NN-Binary commented 1 year ago

Thank you, indeed it works!