• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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