Ubuntu 12.04
Sponsored Link

Enable suEXEC2012/07/10

 
Normally executing user for CGI is Apache's user, but it's possible to execute CGI with other users by using suEXEC.
[1] Enable suEXEC
root@www:~#
aptitude -y install apache2-suexec-custom
root@www:~#
a2enmod suexec

Enabling module suexec.
Run '/etc/init.d/apache2 restart' to activate new configuration!
[2] For example, configure to enable suEXEC under a directory "pangolin".
root@www:~#
vi /etc/apache2/suexec/www-data
# add at the head: write directories you'd like to enable suEXEC

/home/pangolin/public_html

/var/www
public_html/cgi-bin
root@www:~#
vi /etc/apache2/sites-enabled/virtual.host
<VirtualHost *:80>
ServerName www.virtual.host

ServerAdmin webmaster@virtual.host

DocumentRoot /home/pangolin/public_html

ErrorLog /var/log/apache2/virtual.host.error.log

CustomLog /var/log/apache2/virtual.host.access.log combined

LogLevel warn

# add: let pangolin a executing user

SuexecUserGroup pangolin pangolin

</VirtualHost>
root@www:~#
service apache2 restart

* Restarting web server apache2
... waiting ...done.
[3] Make sure a test page is shown normally with changing parmission to 700.
pangolin@www:~$
cd public_html

pangolin@www:~/public_html$
vi suexec.cgi
#!/usr/local/bin/perl

print "Content-type: text/html\n\n";
print "<html>\n<body>\n";
print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n";
print "suEXEC Test Page";
print "\n</div>\n";
print "</body>\n</html>\n";

pangolin@www:~/public_html$
chmod 700 suexec.cgi

Matched Content