UWSGI xml / ini configuration options

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?

+3
source share
2 answers

All commands like options are available for xml / ini / yaml and ldap files.

<app> This is the one exception: it is only available in xml

uwsgi --help

+3

XML. , , , - .

, , - - , .

+1

Source: https://habr.com/ru/post/1774261/


All Articles