Sorry for this very late answer, but maybe this will help people who find this answer in the future:
To get /etc/uwsgi , etc., you need to install the uwsgi package from Debian or Ubuntu (no matter what you use) by running aptitutde install uwsgi . However, this will probably install an ancient version of uwsgi by default! The uwsgi binary is placed in /usr/bin/uwsgi when you install uwsgi in this way.
To get the latest version, also install uwsgi using pip with pip install -U uwsgi , which (at least on my Ubuntu system) will put the uwsgi binary in /usr/local/bin/uwsgi , and then do the following:
cd /usr/bin/
mv uwsgi uwsgi-old
ln -s /usr/local/bin/uwsgi uwsgi
Alternatively: edit the uwsgi init script and edit DAEMON="/usr/bin/uwsgi" accordingly.
Et voila: "debianism" (full init scripts, etc.) and the latest uwsgi binary!
source share