Apache Admin Resources
- Apache-SSL
- Apache-SSL is a secure Webserver, based on Apache and SSLeay/OpenSSL.
- O'Reilly Network Weblogs: Nicer Indexes in Apache
- Good article on using .htaccess file to autoindex directories.
- Userland Frontier: HTTP Authentication Schemes
- This document describes two schemes for the authentication of HTTP clients. Familiarity with the basic structure of HTTP requests, responses, status codes, and message headers is assumed.
- Apache Today - Using .htaccess Files with Apache
- More indepth piece of .htaccess, and how the server handles them.
- User Authentication: Restricting web access to a directory
- I basically created this tutorial to both meet a requirement of a college web class and in response to the many mediocre tutorials about user authentication which are available on the web...
- Stopping, Starting, and Restarting the service.
- Security Tips from Apache.org
- W3C Validator
- Free service to validate HTML code to the W3C guidelines.
- ModMySQLauth instructions
- Instructions for installing and using MySQL for Apache Authentication. See also this tutorial.
Other useful tidbits for httpd.conf (changes from default)
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#
ServerSignature On
ServerTokens Min
|