You can use a .netrc file to enable you to have a passwordless FTP connection. # vi .netrc machine myftpserver.com login myusername...
To include a configuration file in Apache is very easy to do. You simply need to update your httpd.conf to include that...
To allow directory indexing in Apache, you need to use the Options directive in your virtual host. A sample virtual host is...
In IIS7 for Windows 2008, you can set up application pools so you can isolate different websites, for example, so that they’re...
Setting up a redirect for your domain through Internet Information Services (IIS) can quickly accomplished in a few simple steps. 1. Navigate...
The LORI plugin for FireFox will add a status bar at the bottom right corner of Firefox and will display: * TTFB:...
To set up a ProxyPass in Apache is generally pretty straightforward. To proxy requests on serverA for / to port 8080 on...
If you’re running an Apache webserver, a redirect like this should do the trick: RewriteCond %{HTTP_USER_AGENT} “Windows CE” [NC,OR] #Windows CE and...
To list the processes listening on a specific port, you can use lsof. lsof -i : So for example, to see what’s...
If you encounter an error message like the one below, it’s likely because a log file has exceeded the maximum allowed size...