Dedicated Server Support

Tips on Linux, FreeBSD, Windows Dedicated Server.

Saturday, May 27, 2006

BSNL DataOne Goes Unlimited

I was using BSNL DataOne Home 1800 plan with 512kbps speed.
 
The speed was great compared to old ISP i was using. Never faced any problem with net connection other than few phone related problems. Only problem was the 5 GB monthly bandwidth limit.
 
On May BSNL introduced 256 kbps unlimited usage plan for Rs. 900/-. I will be downgrading my internet connection to this as there is no bandwidth usage limit.

Apache DirectoryIndex

 
Apache DirectoryIndex directive allow you to set file name for INDEX page.
 
On a default installation of Apache web server, only index.html will be considered as INDEX document. That is name of your first page should be index.html
 
This is set in apache configuration file (httpd.conf)
 
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents.  The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var
 
 
If you need index.php or any other file used as extension, you need to change the DirectoryIndex directive.
 
DirectoryIndex index.html index.html.var index.php default.html default.htm default.php
 
Now any of the above extenstion is present in your directory, it will be shown as INDEX for the folder.
 
 
 
 

Monday, May 22, 2006

How To Create a User-Defined Service

This article shows how to create user defined service in Windows.