• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Script alias cgi change doesn't work

Erwan

Regular Pleskian
Hi all,

Sorry, a stupid question, but how can we change ScriptAlias for "cgi-bin" (default: ScriptAlias "/cgi-bin/" "/var/www/vhosts/mydomain.com/httpdocs/cgi-bin/").
We want to call a cgi installed in the "/usr/lib/cgi-bin/".

We have put this in the "vhost_ssl.conf" (and "vhost.conf") from the domain:

ScriptAlias "/cgi-bin/" "/usr/lib/cgi-bin/"
<Directory "/usr/lib/cgi-bin/">
AllowOverride None
Options +ExecCGI -MultiViews -SymLinksIfOwnerMatch
Order allow,deny
Allow from all
Require all granted
</Directory>


And after call a "httpdmng ", but it don't work. When we call: "https://mydomain.com/cgi-bin/script.cgi" we have a 404 page...
:(
Thank you.

Erwan
 
Anyone? an idea to follow?
Is it a problem with access rights?
Usually when we apply customizations in the vhost_ssl.conf file, it works ...
 
Hi Igor,

Thank you...
Yes, i've duplicate "server" directory and inside the file "vhosts.php".
After, i've change this:

#ScriptAlias /cgi-bin/ "<?php echo $VAR->server->webserver->cgiBinDir ?>"
ScriptAlias "/cgi-bin/" "/usr/lib/cgi-bin/"
<Directory "/usr/lib/cgi-bin/">
AllowOverride None
Options +ExecCGI -MultiViews -SymLinksIfOwnerMatch
Order allow,deny
Allow from all
Require all granted
</Directory>
 
Back
Top