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

Issue: Unable to log in. #270

Closed DvidPiDev closed 1 year ago

DvidPiDev commented 1 year ago

Hey!

I just set up n.eko and I find myself stuck on the login. I left the login as the default one (user: admin password: neko) but whenever I use those credentials, I just get stuck on the circle expanding through the circle (loading) image

I already tried restarting and redeploying. Here is my docker-compose:

version: "3.4"
services:
  neko:
    image: "m1k1o/neko:firefox"
    restart: "unless-stopped"
    shm_size: "2gb"
    ports:
      - "8080:8080"
      - "52000-52100:52000-52100/udp"
    environment:
      NEKO_SCREEN: 1920x1080@30
      NEKO_PASSWORD: neko
      NEKO_PASSWORD_ADMIN: admin
      NEKO_EPR: 52000-52100
      NEKO_ICELITE: 1
DvidPiDev commented 1 year ago

This is the console output: image

DvidPiDev commented 1 year ago

Or perhaps, does it take that long to launch firefox? Or does firefox get launched after login?

m1k1o commented 1 year ago

It's most likely because you did not expose public ports, or if you wish to access it locally you didn't set proper NAT1TO1 address. Please see docs for further information. https://neko.m1k1o.net/#/getting-started/troubleshooting

DvidPiDev commented 1 year ago

Oh sorry, I totally forgot. Thanks.