[Answered ]-Modify ip and port where modoboa is listening

2👍

The web-facing part of modoboa seems to be just an ordinary django application. You can specify the address you’re binding to like this:

python manage.py runserver 0.0.0.0:8000

Please note that the documentation advises against using the embedded webserver in production. It recommends you to use an external webserver like Apache or nginx instead.

Leave a comment