[SOLVED] Do I need Rocket enabled if using reverse proxy

In my docker compose I have this:

    ports:
  - 8005:1024
  - 3012:3012
environment:
  - WEBSOCKET_ENABLED=true
  - ROCKET_PORT=1024
  - SIGNUPS_ALLOWED=false
  - INVITATIONS_ALLOWED=false
  - ADMIN_TOKEN=blahblah

If I’m using an nginx reverse proxy with letsencrypt certs, do I need Rocket Port?

Yes you would need to have the nginx proxy point to that rocket port (or you could use the default value as well)

Great. That’s how it’s setup and working great! Thank you!