Disable Apache Error log in ISPConfig
ISPConfig is a free hosting control panel. It come with Nginx and Apache web servrs. You can select one during installation. if you are using Apache web server with ISPConfig and want to disable Apache Error logs, then do the following cd /etc/apache2/sites-available sed -i ‘s/ErrorLog .*/ErrorLog \/dev\/null/g’ * Now restart Apache systemctl restart apache2 … Read more