Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
CutyCapt is a CLI utility to capture Webkit renderings of a webpage and the resulting image can be stored in a plethora of formats. To install, first install the dependencies #For sanity sake install epel-release yum install epel-release #On to…
Kept getting this dreaded error on a new install: etho: Not enough data available yet The fix for me was to update the vnstat databases manually, issued the following command: vnstat -u
ASpell is a open source spell checker which is great at suggesting suitable replacements for misspelt word. To install the base library issue the following command at shell: yum install aspell Now you need to install the dictionary, you need…
The general log comes in handy when you want to see each and every single task the mysql / mariadb server performs. Setting this up is pretty straight forward. Edit the mariadb config file at and add the following lines…
So this error, this little error, was the bane of existence for 3 whole days. client denied by server configuration: , referer: Developers at the company started complaining of getting 403 Forbidden errors, at first I thought it was modsecurity,…
This was a mighty screw up, I don’t exactly remember how I did this, but I messed with the routing table and deleted the default gateway entry. So whenever I tried to ping a IP I’d get the following: [root@localhost…
Spent two hours trying to troubleshoot this. [proxy_fcgi:error] The timeout specified has expired The fix turns out to be pretty simple, add the following variables to /etc/httpd/conf/httpd.conf and tune them according to your requirement Timeout 600 ProxyTimeout 600
I have a bad habit of making notes on notepad++ and not saving those notes, so any new command or old command that I modify goes there. I recently found myself in dire need of a couple of commands I…
Mod Security isn’t ready for NGINX yet, even though the ModSec website says a stable version for NGINX is available it still lacks important features. Because of this I’ve had to stick to Apache, but why not then make use…
Event MPM is brand new, released with Apache 2.4 and works similarly as Worker MPM when it comes to processes and threads. The difference here is that Event MPM will dedicated a thread to a request and not the whole…