Tagged: developement

0

Securing your server using DenyHosts

Running an internet accessible server means you are opening yourself to crackers. Running the server in itself is a risk, so risk management is of top priority when you open up the ports for accessing the server. The standard ports are 80(http), 443(https) and mostly 22(for ssh). Port 22 is the most important...

Deployment of PHP or Python Applications using Mercurial and Fabfile 3

Deployment of PHP or Python Applications using Mercurial and Fabfile

Deployments are usually very painful. We generally write scripts to make it automated as much as possible. I wanted my method to be as easy as running single line on command prompt from anywhere in the world. I didn’t want to worry about anything. At last with some experimentation I have found my...