• 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.

How to execute CGIs from anywhere

C

Conor McCarthy

Guest
Is there a way to allow CGIs to be executed from anywhere, not just the cgi-bin, using Plesk?

Cheers
Conor
 
What's the reason for opening this big gate, if i may ask? ;)
 
I've got an existing set of scripts which I want to move to the new server which doesn't separate cgis and html, so it would be difficult to edit all the paths in the scripts.
 
I would try two things.

In /etc/apache2/default-server.conf is a part like this, defining CGI:
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "/srv/www/cgi-bin/"

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

And in you Domains' httpd.include you can find "Options -Includes -ExecCGI" disallowing ExecCGI for your DocumentRoot. You could change that to +ExecCGI, then CGI is allowed for the whole DocumentRoot.

Hope this helps.
 
Thanks for the reply Blackbit. Apache isn't my forte.
I can't find any file called default-server.conf (using locate). And there is no /etc/apache2/ directory. Actually, I can find shag all related to apache when I run a locate apache.

Have you any other ideas?
 
See Knowledge base Article ID: 193

Originally posted by Conor McCarthy
Is there a way to allow CGIs to be executed from anywhere, not just the cgi-bin, using Plesk?

Cheers
Conor
 
Thanks.

By default Plesk runs CGI scripts in /cgi-bin/ folder only. To allow CGI scripts be processed from any folder, you should and uncomment the cgi-script AddHandler directive in the main apache configuration file /etc/httpd/conf/httpd.conf:
 
Back
Top