I find a server with Red Hat 6 OS, this one by default comes with an httpd service that we do not want to use. Therefore I install httpd 2.4.18 as a second apache service. More or less in this link you can identify how it was done.
Now we want to link the http24 service with Django using mod_wsgi.
This has already been done on another server (centos7) from scratch, so when using
yum install mod_wsgi
the mod in the single apache of this test server was installed.
On the new server, which is red hat, when using the same command the mod_wsgi is installed in the apache that comes by default and not the new http24.
My question would be, is there any direct way to indicate to yum how to install the mod / complemente of wsgi in the http24? or in its defect, how to do the installation without yum mod_wsgi and that is direct to httpd24?
Greetings