February 8, 2006
Just came across this interesting mailing list post on profiling memory usage on Linux.
Read the full article →
February 4, 2006
I’ve been trying to ProxyPass from a primary server to a backend (but not firewalled) machine running MediaWiki 1.5.2 with very little luck.
I finally come across the solution. backend.machine.edu is the machine hosting MediaWiki. frontend.machine.edu is the machine acting as a reverse proxy.
1. Proxy machine, httpd.conf
ProxyPass /wiki http://backend.machine.edu/wiki
2. On backend.machine.edu edit DefaultSettings.php
$wgServer = ‘http://frontend.machine.edu’;
This [...]
Read the full article →