• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Plesk put

E

ElricM

Guest
Plesk messed up httpd.conf with awstats installed

I installed the awstats package which has been working just fine for months now. However this am, Plesk evidently rewrote the main apache config file and by error, put the include line above inside the last <Directory> block for awstats like this:

Code:
<Directory "/usr/local/awstats/wwwroot">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
Include /etc/httpd/conf/httpd.include
</Directory>

The problem of course is that all the commands inside the httpd.include file(s) are illegal inside a directory block so apache would not start and all the domains on the server were down. I think the configuration files are regenerated early morning so unfortunately the webserver might have been down for several hours while I was sleeping peacefully!

How can I prevent this from happening again?
 
Ok, duh.... the answer I guess was obvious, early morning panic. This is what I did,

I created a new file awstats.conf, moved all of the lines from /etc/httpd/conf/httpd.conf that were specific to awstats to and placed it into directory /etc/httpd/conf.d

Hopefully this will eliminate the problem from happening again.

Please let me know anyone if I'm missng something.
 
Back
Top