>
> Have you tried:
>
>     mod_wsgi-express start-server rrfexpire.wsgi
>

I had, but didn't really understand what it was doing. I still don't but am 
now starting to understand.  My progress was much faster this time by 
releasing the need to try to understand exactly how all pieces work 
together, and just following the examples.  For future reference, I only 
made a couple changes (chose to go with port 8083).  
First, added this to the main Apache config file, httpd.conf:

  <VirtualHost *:80>
      ServerName lelrdaapps01.city.manufacturer.com
      ProxyPass /rrfexpire http://localhost:8083/
      ProxyPassReverse /rrfexpire http://localhost:8083/
      RequestHeader set X-Forwarded-Port 80
  </VirtualHost>

And setup my mod_wsgi-express as:
mod_wsgi-express setup-server rrfexpire.wsgi --port=8083 --user apache --
group apache --server-root=/etc/mod_wsgi-express-8083

Followed by:
/etc/mod_wsgi-express-8083/apachctl start

Now all previous Flask apps with system mod_wsgi are running and mine is 
also!

I'm sure I need to master the Apache proxy documentation and will start 
> with that, but any other recommended resources would be appreciated.
>
> Ignore that it is using docker to run the backend WSGI applications, 
> assume using mod_wsgi-express on same machine and look at description of 
> using proxies in:
>
> * http://blog.dscpl.com.au/2015/06/proxying-to-python-web-application.html
> * 
> http://blog.dscpl.com.au/2015/07/redirection-problems-when-proxying-to.html
>

Thanks, these resources, and this Question were very helpful guides 
https://stackoverflow.com/questions/41725645/serving-static-files-using-mod-wsgi-express-with-proxypass-in-apache-is-not-work

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to