Fedora 14
Sponsored Link

Enable userdir2010/11/06

  Enable userdir, users can build websites with this config.

[1] Configure httpd
[root@www03 ~]#
vi /etc/httpd/conf/httpd.conf


# line 366: make it comment

#
UserDir disable

# line 373: uncomment

UserDir public_html

# line 381-392: uncomment

<Directory /home/*/public_html>
    AllowOverride
All
# change

    Options
ExecCGI
# enable CGI

    <Limit GET POST OPTIONS>
         Order allow,deny
         Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS>
         Order deny,allow
         Deny from all
    </LimitExcept>
</Directory>

[root@www03 ~]#
/etc/rc.d/init.d/httpd restart

Stopping httpd:
[ OK ]

Starting httpd:
[ OK ]
[2] Make CGI test page in a user's home directory and access to it with web browser. It's OK if following page is shown.
[fedora@www03 ~]$
mkdir public_html

[fedora@www03 ~]$
chmod 711 /home/fedora

[fedora@www03 ~]$
chmod 755 /home/fedora/public_html

[fedora@www03 ~]$
cd public_html

[fedora@www03 public_html]$
vi index.cgi


#!/usr/local/bin/perl

print "Content-type: text/html\n\n";
print <<"EOM";
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Test Page ( /home/fedora/public_html )
</div>
</body>
</html>
EOM
exit;


[fedora@www03 public_html]$
chmod 705 index.cgi
Matched Content