Would you like to learn how to install Nginx and enable the use of Perl CGIs on a computer running Ubuntu Linux? In this tutorial, we are going to show you how to enable the CGI feature and enable Perl scripts to run on the Nginx server.
• Ubuntu 18
• Ubuntu 19
• Ubuntu 20
• Nginx 1.18.0
• Perl 5
Equipment list
The following section presents the list of equipment used to create this tutorial.
As an Amazon Associate, I earn from qualifying purchases.
Nginx – Related Tutorial:
On this page, we offer quick access to a list of tutorials related to Nginx.
Tutorial Ubuntu – Perl CGI on Nginx
Install the Perl package.
Install the Nginx server and the Fcgiwrap package.
Create a configuration file for the CGI gateway.
Here is the file content.
Create a directory to store the CGI files.
Edit the Nginx configuration file for the default website.
Insert the following line in the area named SERVER.
Here is the file, before our configuration.
Here is the file, after our configuration.
Restart the Nginx service.
As an example, let’s create a Perl CGI.
Access the Nginx’s CGI directory.
Create a Perl CGI.
Here is the file content.
Change the file permission.
Open your browser and enter the IP address of your web server plus /cgi-bin/test.pl.
In our example, the following URL was entered in the Browser:
• http://172.31.8.195/cgi-bin/test.pl
The Perl CGI should display the following message.
Congratulations! Nginx is now able to use Perl scripts as CGI.