Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
The following instructions appear to be incorrect “We can find out what the “APACHE_LOG_DIR” is set to by examining a different file, the aptly-named “envars” file: sudo nano /etc/apache2/envars”
There is no file called “envars”. It should be changed to “envvars”. The correct sudo command is: sudo nano /etc/apache2/envvars
Hi, You can use my app to create Log syntax. It’s really easy, just drag and drop elements that you need. apacheloggenerator.com
Mike Karpinski
Be careful, if you’ve created a “new” VM (ex: from a snapshot) and never bothered to update the root password (assuming you created it so it had one changed) then your daily cron job’s (ex: logrotate) may not be turned on, which would cause apache’s normal package rotation for its logs to “not work” see http://serverfault.com/a/767550/27813
Hi,
I´m having xmlrpc.php and ddos attacks in my wordpress droplet, so i´m trying to stop them with several measures. Seeing my apache log file which is growing up to 120Mb before rotate to new one, I notice when my droplet have been attacked that i can´t access to my log file due to it size is growing for the threath requests and its size limit is so big. Where can i limit the size? Which size could be enough?
Thanks
I using CentOS 7.3 and everything is going well, But access.log file has too many records that slow down the load for statistics. So I want records to be recorded every day.
This is my current setting
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /home/example.com/public_html
ErrorLog /home/example.com/logs/error.log
CustomLog /home/example.com/logs/access.log combined
</VirtualHost>
How to be like this
/home/example.com/logs/access-yyyy-mm-dd.log
Example, today is 2017-05-29, I want to log file on
access-2017-05-29.log
And tomorrow will log on
access-2017-05-30.log
Please help me. Thanks.