[Answered ]-Change port for pootle server

1👍

The built-in CherryPy server’s default port is 8000, and you can change it by passing --port <port-number> to the pootle start command.

Note however you should only use CherryPy for testing, and setting up a reverse proxy is highly recommended.

👤julen

1👍

In Pootle 2.7 you need to use:

pootle run_cherrypy --port <PORT_NUM>

instead of pootle start which does not accept --port nor --host.

I need to have CherryPy bound to all interfaces, so I use:

pootle run_cherrypy --host 0.0.0.0

Official documentation

Leave a comment