Comment installer & amp; configurer mod_wsgi pour py3

J'ai installé & configuré mod_wsgi pour python2.7 mais maintenant, je voudrais aussi avoir mod_wsgi pour py3

Je suis sous ubuntu 12.04
Ma conf apache fichier ressemble à ceci pour py2.7 :

<Directory /var/www/vhosts/my_web>
    WSGIProcessGroup my_web
    WSGIApplicationGroup %{GLOBAL}
    Order deny,allow
    Allow from all
</Directory>

Maintenant je voudrais installer mod_wsgi pour python3.

Je pense que j'ai à faire apt-get install libapache2-mod-wsgi-py3

Mais je ne peux trouver aucune instruction sur la façon de configurer mod_wsgi pour py3.
a) je Peux le garder mod_wsgi pour py2.7 ou dois-je besoin de l'enlever pour apache pour fonctionner avec mod_wsgi_py3?
b) Que dois-je inclure dans ma conf apache?

source d'informationauteur Lazik