Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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.
A more specific solution would be to change the line:
filter f_crit { level(crit .. emerg); };
to:
filter f_crit { level(crit .. emerg) and not facility(auth); };
And don't comment out the line which I described above.
Restart syslog-ng again.
This would only silence the Authentication Critical...
If this is too annoying for you on a Debian 12, as it is for me:
Open /etc/syslog-ng/syslog-ng.conf.
In the "Log paths" section, comment out the line:
log { source(s_src); filter(f_crit); destination(d_console); };
Restart the syslog-ng service:
systemctl restart syslog-ng.service
This will of...