• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Question goAccess in 18.0.77

Hi, Peter. Could you please try adding SecResponseBodyLimit 268435456 in Tools & settings > Web Application Firewall (ModSecurity) > Settings > Custom directives?
It requires an Apache reload after the change, but it works. Thank you.
I think @Azurel has a point. This should be checked.
 
Could you guys who encountered the Internal Server Error confirm what ruleset are you using? It seems the issue appears with Apache ModSecurity 2.9/Comodo (free), but our team wants to gather more information. Thanks in advance.
 
The behavior was confirmed as a bug with ID PPPM-15381. At the time being, I cannot suggest a workaround other than increasing SecResponseBodyLimit. I will follow-up with more details as soon as our team decides what the best approach will be. Thank you for bringing our attention to the matter.
 
An update to @Azurel 's plausible suggestion to exclude the /plesk-stat/ directory from ModSecurity. To achieve this, one simple solution is to place the

Code:
<Location "/plesk-stat/">
   SecRuleEngine Off
</Location>

part into the Tools & Settings > Security > Web Application Firewall (ModSecurity) > Settings > Custom directives. The setting will be written to the /etc/httpd/conf/plesk.conf.d/modsecurity.conf file that will be applied globally to all Apache virtual hosts on the next reload or restart of Apache. So it is not necessary to create the configuration for each individual domain, but if you want it applied, run # service httpd reload after adding the part to the custom directives.
 
Back
Top