I have a setup such that an nginx server passes control off to uWsgi, which launches a pylons app using the following in my xml configuration file:
<ini-paste>...</ini-paste>
Everything is working nicely, and I was able to set it to debug mode using the following in the associated ini file, like:
debug = true
Except debug mode only prints out errors, and doesn't reload the code everytime a file has been touched. If I was running directly through paste, I could use the --reload
option, but going through uWsgi complicates things.
Does anybody know of a way to tell uWsgi to tell paste to set the --reload
option, or to do this directly in the paste .ini file?