Graham Dumpleton

Results 765 comments of Graham Dumpleton

Okay, looking at Playwright, it is forking browser processes. Doing that inside of a web server such as Apache is a really bad idea. You should look at changing the...

It is not a case of which web server, but the nature of any front end web server that doesn't make it necessarily a suitable host for doing significant forked...

Odd. The standard apachectl from the original httpd distribution should only send a signal to the httpd process and nothing more. If it is hanging waiting then it could only...

Going to close this issue at this point. One thing I forgot about at the time is that due to changes in Python 3.9 how Python interpreters are cleaned up...

You need to have the SSL directives inside of the VirtualHost, for: ``` ServerName example.com ``` You have them under: ``` ``` The `ServerName` should be your actual hostname you...

In the AWS docs they probably presume you will not create you own VirtualHost. When you don't it will use the default virtual host as a fallback. Since you did...

Note that default isn't actually that marked as `_default_`. That is just a convention that is named that. The one which it falls back onto it actually whatever VirtualHost was...

What happens if you add: ``` WSGIDestroyInterpreter Off ``` at global Apache scope?

So that you saw this when `check_password()` was used is I believe coincidental. The underlying issue here and which have seen with Trac before, is that in Python 3.9 the...

Going to close this issue now. I have added some docs about WSGIDestroyInterpreter in develop version of code for next version.