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.
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
- [Answered ]-Pre-registering users in database with python-social-auth
- [Answered ]-Django – extend date template filter
- [Answered ]-Django importing ldap libraries
- [Answered ]-Django giving cryptic error for foreignkey
- [Answered ]-Python objects lose state after every request in nginx
Source:stackexchange.com