Is there a complete list of uwsgi mystical magic variables?

I am trying to make a rather complicated configuration using uwsgi. I try to make things easier for myself in the end, and naturally, while doing this, I am doing everything as hard as it can be now.

Anyway, I'm looking for a complete list of magic variables. The ones I could find on the Emperorโ€™s page are not what I do. The page (and others) offers there a great vocabulary of magic. Somewhere.

%v = the vassals dir
%o = the original config filename as specified in the command line
%p = the absolute path of the config filename
%s = the filename of the config file
%d = the absolute path of the directory containing the config file
%e = the extension of the config file
%n = the filename without extension
+5
source share
2 answers

The uwsgi docs seem to have been updated since this question was requested. Here is a link to a longer list of magic variables:

http://uwsgi-docs.readthedocs.org/en/latest/Configuration.html#magicvars

+4

% c, , :

/foo/bar/test/one.ini 'test'

+4

All Articles