"L.V.Gandhi" wrote:
> for public_html pages of individual user, how to create separate cgi-bins?

In apache docs, look for htdocs/manual/misc/FAQ.html#user-cgi. I paste
here for your reference.
------------------------------------------------------------------------------------
How do I allow each of my user directories to have a cgi-bin directory? 

 Remember that CGI execution does not need to be restricted only to
cgi-bin directories. You can allow CGI script execution in arbitrary
parts of your filesystem. 

 There are many ways to give each user directory a cgi-bin directory
such that anything requested as http://example.com/~user/cgi-bin/program
will be executed as a CGI script. Two alternatives are: Place the
cgi-bin directory next to the public_html directory: 

ScriptAliasMatch ^/~([^/]*)/cgi-bin/(.*) /home/$1/cgi-bin/$2 Place the
cgi-bin directory underneath the public_html directory: 

<Directory /home/*/public_html/cgi-bin>
 ����Options ExecCGI
 ����SetHandler cgi-script
 </Directory> 
-------------------------------------------------------------------------------------

 Shridhar

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to