virtualhost logfile size
Im configuring my apache virtualhosts logfile settings. I want that new logfile is started every time log files hits 30mb size and old logfiles is named something like access.1, access.2...My current setup, now here it will just grow that 1 logfile to the end of time

<VirtualHost *:80>
ServerAdmin admin@myserver.com
DocumentRoot /home/user/html
ServerName user.myserver.com
IndexOptions FancyIndexing IconHeight IconWidth SuppressDescription IconsAreLinks NameWidth=35 FoldersFirst
ErrorLog /var/log/apache/user/error.log
CustomLog /var/log/apache/user/access.log common
</VirtualHost>