Bud serve external URL doesnt work

Hi, I’m trying to access dev server from mobile device.

Bud 6.6.5.

After yarn dev, in terminal:

ℹ server
╷
├─ proxy: https://nomanisanisland.test (​https://nomanisanisland.test​)
├─ internal: https://localhost:3000 (​https://localhost:3000​)
├─ external: https://192.168.1.128:3000 (​https://192.168.1.128:3000​)

I have this setup in bud.config.mjs:

    app.serve({
      host: '0.0.0.0',
      port: 3000,
      cert: app.path('/Users/aitor/Library/Application Support/mkcert/nomanisanisland.test+3.pem'),
      key: app.path('/Users/aitor/Library/Application Support/mkcert/nomanisanisland.test+3-key.pem'),
    })

If I try to access to https://192.168.1.128:3000 I get site unavailable or bussy.

Chrome works.

20 chars