map
All Sun WebServer 2.0 URL mappings are now stored in a separate file: map.conf. 
To convert the map directive 
- 
Given the following Sun WebServer 1.0 directive in /etc/http/httpd.conf: 
 
url //widgets {
	map 		/cgi-bin/			/var/http/shared/cgi-bin/			cgi
}
 | 
 
- 
Add the following line to the /var/http/server1/websites/widgets/conf/map.conf file at the widgets site: 
 
map 		/cgi-bin/			/var/http/shared/cgi-bin/			cgi 
 |