Apache

Apache – rotating log files – a better solution found

Apache – rotating log files This article relates my experiences with rotatelogs, a utility provided with Apache, and how you can use it to rotate www logs without having to restart Apache. But since I wrote this article, I’ve learned how to use newsyslog.conf to do the same thing.  And I like using newsyslog better.  […]

Apache – rotating log files – a better solution found Read More »

favicon.ico

favicon.ico If you run a web server, no doubt you’ve seen entries in your logs like this: "GET /favicon.ico HTTP/1.1" 404 3711 That bothered me for quite some time.  Then I went searching to find an answer.   I found it at http://www.favicon.com/. See also Putting the Daemon into Windows. And don’t forget to read

favicon.ico Read More »

My first CGI script (uptime.pl) – an update ==> better, faster, smaller!

My first CGI script (uptime.pl) This article is about my first CGI script.  That may not sound like much, but I found it was pretty exciting.  Everything I’d written today on my websites had been static.  This script shows you some dynamic content. If you’ve never done CGI scripts before, you’re going to be amazed

My first CGI script (uptime.pl) – an update ==> better, faster, smaller! Read More »

Protected Apache directories – added more detail

Protected Apache directories This article tells you how you can create password protected directories on your website.  First we will add a user, then we will give them access to a directory. NOTE: You will need at least AllowOverride AuthConfig on the directory you are trying to protect. e.g.: <Directory "/path/to/protected/directory"> AllowOverride AuthConfig </Directory> The

Protected Apache directories – added more detail Read More »

Scroll to Top