Is there a description for all processed tags in the xml / ini configuration for uWSGI? The docs say that all command line options can go to xml / ini, but there are more, in particular, the following configuration is handled properly:
<uwsgi>
<home>/var/www/example.com/</home>
<pythonpath>/var/www/example.com/app</pythonpath>
<app mountpoint="/">
<script>example</script>
</app>
</uwsgi>
This snippet has a tag appcontaining a nested tag script. But none of them is a command-line option for uwsgi.
Is there a complete list of such tags? Are these options applicable to ini configs?
source
share