|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
issue with -S option.
Hello All.
I'm using the standard cronolog v. 1.6.2 with no patches, on a RH9 linux box,
everything works correctly, except the symbolic linking of access_log to the current
log file. This link never gets updated. The only way this link gets updated to
the current log file is if the link gets erased, then when the next transaction gets logged
it updates the logfile.
Any ideas would be great.
Thanks in advance!
John.
Here is the config:
##############################################
# Virtual Host - www.some-site.com #
##############################################
<VirtualHost xx.xxx.xxx.xxx>
DocumentRoot /web/somewhere
ServerName www.some-site.com
ServerAlias some-site.com www.some-site.com
ErrorLog "|/usr/local/apache/bin/cronolog /var/log/httpd/somewhere/%Y/%m/some-site-error_syslog.%Y.%m.%d"
CustomLog "|/usr/local/apache/bin/cronolog -S /var/log/httpd/somewhere/access_log -P /var/logs/somewhere/access_log.1 /var/log/httpd/somewhere/%Y/%m/some-site-access_syslog.%Y.%m.%d" combined
ScriptAlias /cgi-bin/ /web/cgi-bin/
<Directory /web/cgi-bin>
AllowOverride None
Options None
</Directory>
<Directory /web/somewhere>
Options FollowSymLinks IncludesNOEXEC
AllowOverride None
<Limit GET PUT POST>
order allow,deny
allow from all
</Limit>
</Directory>
</VirtualHost>
|