If Python's mod_wsgi-express starts in a terminal, which is then resized, the server shuts down. This seems to be due to Apache interpreting the SIG_WINCH. Can this be disabled in any way?
The naive way to catch it using signal.signal(signal.SIGWINCH, signal.SIG_IGN)
is blocked: http://modwsgi.readthedocs.io/en/develop/configuration-directives/WSGIRestrictSignal.html.
Is it possible to somehow ignore this signal, either in code or during the command-line mod_wsgi-express
?