Apache
These are some random notes on using Apache. They have not yet been organized into a howto.
ports and ips
BindAddress, Port, Listen! Which one to use? In general, it is only necessary to bind to a specific IP when using vservers or multiple apache instances.
See httpd.apache.org/docs/1.3/bind.html
logging
ErrorLog "| logger -t apache -p daemon.err"
CustomLog "| logger -t apache -p daemon.info" combined
LogFormat "%v \"%r\" %>s %b \"%{Referer}i\"" combined
domain, request, status code, bytes sent, referrer
other
- Proxy
- Using mod_proxy
- Securing
- Ways to make apache more secure.
- SSL
- mod_ssl with apache 1.3
- Spambots
- a quick and easy (manual) way to identify and stop spambots.
|