• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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