From f0ef422aad5958c71ec05af374af71755fdb890d Mon Sep 17 00:00:00 2001
From: Henning Brauer default.ida
and
cmd.exe
?
Problem: You are noticing restart messages in your error log, + periodically, when you know you did not restart the server + yourself:
+ ++[Thu Jun 6 04:02:01 2002] [notice] SIGHUP received. Attempting to restart +[Thu Jun 6 04:02:02 2002] [notice] Apache configured -- resuming normal operations ++ +
Check your cron jobs to see when/if your server logs are being + rotated. Compare the time of rotation to the error menage time. + If they are the same, you can somewhat safely assume that the + restart is due to your server logs being rotated.
+ @@ -2989,6 +3014,10 @@ Options Includes ExecCGIIf you are using suexec, the first technique will not work
+ because CGI scripts must be stored under the public_html
+ directory.
The goal here is to prevent people from inlining your images + directly from their web site, but accessing them only if they + appear inline in your pages.
+ +
This can be accomplished with a combination of SetEnvIf and + the Deny and Allow directives. However, it is important to + understand that any access restriction based on the REFERER + header is intrinsically problematic due to the fact that + browsers can send an incorrect REFERER, either because they + want to circumvent your restriction or simply because they don't + send the right thing (or anything at all).
+ +The following configuration will produce the desired effect + if the browser passes correct REFERER headers.
+ ++SetEnvIf REFERER "www\.mydomain\.com" linked_from_here +SetEnvIf REFERER "^$" linked_from_here + +<Directory /www/images> + Order deny,allow + Deny from all + Allow from env=linked_from_here +</Directory> ++ +
Further examples can be found in the Environment Variables documentation.
+ +cronolog
from Andrew Ford's site at http://www.ford-mason.co.uk/resources/cronolog/.
+ href="http://www.cronolog.org/">http://www.cronolog.org/.
It can automatically create logfile subdirectories based on
time and date, and can have a constant symlink point to the
rotating logfiles. (As of version 1.6.1, cronolog is
--
cgit v1.2.3