Nginx and Perl-FastCGI on Fedora 13
Updated by Linode Written by Linode
DeprecatedThis guide has been deprecated and is no longer being maintained.
The nginx web server is a fast, lightweight server designed to efficiently handle the needs of both low and high traffic websites. Although commonly used to serve static content, it’s quite capable of handling dynamic pages as well. This guide will help you get nginx up and running with Perl and FastCGI on your Fedora 13 Linode.
It is assumed that you’ve already followed the steps outlined in our getting started guide. These steps should be performed via a root login to your Linode over SSH.
Basic System Configuration
Issue the following commands to set your system hostname, substituting a unique value for “hostname.” :
echo "HOSTNAME=hostname" >> /etc/sysconfig/network
hostname "hostname"
Edit your /etc/hosts
file to resemble the following, substituting your Linode’s public IP address for 12.34.56.78, your hostname for “hostname,” and your primary domain name for “example.com.” :
- /etc/hosts
-
1 2
127.0.0.1 localhost.localdomain localhost 12.34.56.78 hostname.example.com hostname
Install Required Packages
Issue the following commands to update your system and install the nginx web server and compiler tools (Perl should already be installed):
yum update
yum install nginx make automake gcc gcc-c++ wget fcgi-perl
chkconfig --add nginx
chkconfig --level 35 nginx on
service nginx start
Configure Your Site
In this guide, we’ll be using the domain “example.com” as our example site. You should substitute your own domain name in the configuration steps that follow. First, we’ll need to create directories to hold our content and log files:
mkdir -p /srv/www/www.example.com/public_html
mkdir /srv/www/www.example.com/logs
chown -R nginx:nginx /srv/www/www.example.com
Issue the following commands to create virtual hosting directories:
mkdir /etc/nginx/sites-available
mkdir /etc/nginx/sites-enabled
Add the following lines to your /etc/nginx/nginx.conf
file, immediately after the line for include /etc/nginx/conf.d/*.conf
:
- /etc/nginx/nginx.conf
-
1 2
# Load virtual host configuration files. include /etc/nginx/sites-enabled/*;
Next, we’ll need to define our site’s virtual host file:
- /etc/nginx/sites-available/www.example.com
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
server { listen 80; server_name www.example.com example.com; access_log /srv/www/www.example.com/logs/access.log; error_log /srv/www/www.example.com/logs/error.log; root /srv/www/www.example.com/public_html; location / { index index.html index.htm; } location ~ \.pl$ { gzip off; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:8999; fastcgi_index index.pl; fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name; } }
Issue the following commands to enable the site:
cd /etc/nginx/sites-enabled/
ln -s /etc/nginx/sites-available/www.example.com
service nginx restart
You may wish to create a test HTML page under /srv/www/www.example.com/public_html/
and view it in your browser to verify that nginx is properly serving your site (Perl will not work yet). Please note that this will require an entry in DNS pointing your domain name to your Linode’s IP address (found on the “Remote Access” tab in the Linode Manager).
Configure FastCGI Wrapper
Issue the following command sequence to download the FastCGI wrapper script (credit: Denis S. Filimonov) and an init script to control the FastCGI process, set the permissions, launch the wrapper for the first time, and ensure that FastCGI launches at startup:
cd /opt/
wget -O fastcgi-wrapper http://www.linode.com/docs/assets/640-fastcgi-wrapper.sh
wget -O init-rpm.sh http://www.linode.com/docs/assets/639-init-rpm.sh
mv /opt/fastcgi-wrapper /usr/bin/fastcgi-wrapper.pl
mv /opt/init-rpm.sh /etc/rc.d/init.d/perl-fastcgi
chmod +x /usr/bin/fastcgi-wrapper.pl
chmod +x /etc/rc.d/init.d/perl-fastcgi
/etc/rc.d/init.d/perl-fastcgi start
chkconfig --add perl-fastcgi
chkconfig perl-fastcgi on
Test Perl with FastCGI
Create a file called “test.pl” in your site’s “public_html” directory with the following contents:
- /srv/www/www.example.com/public\\_html/test.pl
-
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/perl print "Content-type:text/html\n\n"; print <<EndOfHTML; <html><head><title>Perl Environment Variables</title></head> <body> <h1>Perl Environment Variables</h1> EndOfHTML foreach $key (sort(keys %ENV)) { print "$key = $ENV{$key}<br>\n"; } print "</body></html>";
Make the script executable by issuing the following command:
chmod a+x /srv/www/www.example.com/public_html/test.pl
When you visit http://www.example.com/test.pl
in your browser, your Perl environment variables should be shown. Congratulations, you’ve configured the nginx web server to use Perl with FastCGI for dynamic content!
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
- The NGINX Homepage
- FastCGI Project Homepage
- Perl Documentation
- Installing NGINX on Fedora 13
- Basic NGINX Configuration
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.