From 2189d7911bc163d6e59adee8ecf8816f453c5954 Mon Sep 17 00:00:00 2001 From: Uli Date: Mon, 28 Mar 2022 13:51:02 +0200 Subject: [PATCH] Add instructions for Apache2 using PHP FPM When using Apache2 with PHP FPM instead of the PHP module, the Screen app will only work when disabling the fcgi "cache". Added the relevant configuration to the apache2 section of the document. --- docs/setup.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/setup.rst b/docs/setup.rst index d65d770..a0da99b 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -171,7 +171,16 @@ Example: [...] +If you are using PHP-FPM you need to disable fcgi cache for the screen module to work correctly. Add the following to VirtualHost section: +:: + [...] + + ProxySet flushpackets=on + + [...] + +See `mod_proxy documentation `_ for more details. Stable version """""""""""""""""