LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Apache (https://www.linuxquestions.org/questions/linux-software-2/apache-65583/)

alitrix 06-14-2003 11:00 AM

Apache
 
Joh people.

Atm I configured in the httpd.conf that every user can set his website in /home/xxx/public_html and his website will come online.

How can I make that every user has his own cgi-bin?
For example /home/xxx/public_html/cgi-bin, should work as well...?

I can't find something about it in the manual of Apache and this doesn't work:
Code:

    ScriptAlias /cgi-bin/ "/home/*/public_html/cgi-bin/"

    #
    # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    #
    <Directory "/home/*/public_html/cgi-bin">
      AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>


david_ross 06-14-2003 12:04 PM

Don't make a it an alias - just create add ExecCGI to the options directive.

alitrix 06-14-2003 02:41 PM

How should I do that?
The directive ExecCGI doesn't exist.
Do you know another one?

green_dragon37 06-14-2003 02:46 PM

ExecCGI is not a directive, it is an option. So the options line should be "Options ExecCGI"

Ian


All times are GMT -5. The time now is 11:53 PM.