Hey folks how do I configure Apache to execute symlinked CGI scripts? I have got the following directory structure:

/tmp/foo
├── linked.cgi -> /tmp/bar/script.cgi
└── direct.cgi
/tmp/bar
└── script.cgi

I tried the following configuration and while /foo/direct.cgi executed fine, /foo/linked.cgi downloaded the script instead of executing it.

<Directory "/tmp/foo/">
   AllowOverride None
   Require all granted
   Options +ExecCGI
   AddHandler cgi-script .cgi
</Directory>

Alias /foo/ /tmp/foo/

I'd appreciate any help.

Greetings
Larivact


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to