Re: Python flask socket with httpd problems

2018-08-13 Thread flipchan
After some verbose logging httpd -dvv I found that I forgot about chroot so instead of /var/www/run I changed it to /run/my.sock and chmod www:www my.sock and got it working :)) On August 12, 2018 10:14:55 PM UTC, ed...@pettijohn-web.com wrote: >What are the permissions on the socket? Can user

Re: Python flask socket with httpd problems

2018-08-12 Thread edgar
What are the permissions on the socket? Can user www read and write to it? On Aug 12, 2018 11:40 AM, Tony Boston wrote: > > On 12.08.18 03:25, flipchan wrote: > > Hello all, > > > > im trying to run a python flask application with httpd > > as a reverse proxy and im not getting it to work. > > >

Re: Python flask socket with httpd problems

2018-08-12 Thread Tony Boston
On 12.08.18 03:25, flipchan wrote: > Hello all, > > im trying to run a python flask application with httpd > as a reverse proxy and im not getting it to work. > > According to the python flask's online documentation, > i should be able to just create a fast-cgi socket that > should work with ht

Python flask socket with httpd problems

2018-08-12 Thread flipchan
Hello all, im trying to run a python flask application with httpd as a reverse proxy and im not getting it to work. According to the python flask's online documentation, i should be able to just create a fast-cgi socket that should work with httpd, however i am only getting 500 errors when i do