python - modify ip and port where modoboa is listening -
how can modify ip , port modoboa listening. default listening on localhost , port 8000
http://localhost:8000/
i make listening on ip,
http://0.0.0.0:8000/
i can't find no place in docu describing this. in advance
b.t.w. : not able create new tag "modoboa", maybe 1500 points can me
the web-facing part of modoboa seems ordinary django application. can specify address you're binding this:
python manage.py runserver 0.0.0.0:8000
please note documentation advises against using embedded webserver in production. recommends use external webserver apache or nginx instead.
Comments
Post a Comment