Difference between revisions of "Configuring a Fedora Linux Based Web Server"

From Techotopia
Jump to: navigation, search
Line 5: Line 5:
 
To set up your own web site you need a computer, an operating system, a web server, a domain name, a name server and an IP address.
 
To set up your own web site you need a computer, an operating system, a web server, a domain name, a name server and an IP address.
  
The computer can be any system capable of running Linux. In terms of an operating system, we will assume you are using Ubuntu Linux. Ubuntu Linux supports the Apache web server which can easily be installed once Ubuntu is up and running. A domain name can be registered with any domain name registration service.
+
The computer can be any system capable of running Linux. In terms of an operating system, we will assume you are using Fedora Linux. Fedora Linux supports the Apache web server which can easily be installed once Fedora is up and running. A domain name can be registered with any domain name registration service.
  
 
If your ISP provides static IP addresses then you will need to associate your domain with your static IP address. This is achieved using a name server. Some domain registration services will provide this service for you. If yours does not, you can create a free account at [http://www.zoneedit.com/ http://www.zoneedit.com] and use their name servers to point your domain name at your static IP address.
 
If your ISP provides static IP addresses then you will need to associate your domain with your static IP address. This is achieved using a name server. Some domain registration services will provide this service for you. If yours does not, you can create a free account at [http://www.zoneedit.com/ http://www.zoneedit.com] and use their name servers to point your domain name at your static IP address.
Line 17: Line 17:
 
The standard web server on Linux is Apache. The web server is the technology that receives requests from web browsers and servers up the requested web pages to those browsers.  
 
The standard web server on Linux is Apache. The web server is the technology that receives requests from web browsers and servers up the requested web pages to those browsers.  
  
The desktop version of Ubuntu Linux does not install the Apache web server by default. The first step in setting up a web server, therefore, is to install Apache. This can be performed either from the command-line or using the Synaptic Package Manager. To use the Synaptic Package Manager, click on the ''System'' menu, select ''Administration'' and and click on ''Synaptic Package Manager''. Enter your password if prompted to do so. Click on the ''Search'' toolbar button and search for ''apache2''. After the search complete the Apache 2 Server should be listed in the Synaptic window. Click on the toggle next to the Apache server and select ''Mark for installation''. Finally, click on ''Apply'' in the toolbar to begin the installation.
+
The desktop version of Fedora Linux does not install the Apache web server by default. The first step in setting up a web server, therefore, is to install Apache. This can be performed either from the command-line or using the Synaptic Package Manager. To use the Synaptic Package Manager, click on the ''System'' menu, select ''Administration'' and and click on ''Synaptic Package Manager''. Enter your password if prompted to do so. Click on the ''Search'' toolbar button and search for ''apache2''. After the search complete the Apache 2 Server should be listed in the Synaptic window. Click on the toggle next to the Apache server and select ''Mark for installation''. Finally, click on ''Apply'' in the toolbar to begin the installation.
  
 
To install Apache from the command-line start a terminal window (Applications->Accessories->Terminal) and run the following command at the command prompt:
 
To install Apache from the command-line start a terminal window (Applications->Accessories->Terminal) and run the following command at the command prompt:

Revision as of 20:41, 23 August 2007

In this chapter we will explain how to configure a Fedora Linux system to act as a web server.


Contents


Requirements for Configuring a Web Server

To set up your own web site you need a computer, an operating system, a web server, a domain name, a name server and an IP address.

The computer can be any system capable of running Linux. In terms of an operating system, we will assume you are using Fedora Linux. Fedora Linux supports the Apache web server which can easily be installed once Fedora is up and running. A domain name can be registered with any domain name registration service.

If your ISP provides static IP addresses then you will need to associate your domain with your static IP address. This is achieved using a name server. Some domain registration services will provide this service for you. If yours does not, you can create a free account at http://www.zoneedit.com and use their name servers to point your domain name at your static IP address.

If you do not have a static IP address (i.e. your ISP provides you with a dynamic address which changes frequently) then you can use one of a number of free services which map your dynamic IP address to your domain name. One such service is provided by http://www.dnsExit.com.

Once you have your domain name and your name server configured the next step is install and configure your web server.

Installing the Apache Web Server on Ubuntu Linux

The standard web server on Linux is Apache. The web server is the technology that receives requests from web browsers and servers up the requested web pages to those browsers.

The desktop version of Fedora Linux does not install the Apache web server by default. The first step in setting up a web server, therefore, is to install Apache. This can be performed either from the command-line or using the Synaptic Package Manager. To use the Synaptic Package Manager, click on the System menu, select Administration and and click on Synaptic Package Manager. Enter your password if prompted to do so. Click on the Search toolbar button and search for apache2. After the search complete the Apache 2 Server should be listed in the Synaptic window. Click on the toggle next to the Apache server and select Mark for installation. Finally, click on Apply in the toolbar to begin the installation.

To install Apache from the command-line start a terminal window (Applications->Accessories->Terminal) and run the following command at the command prompt:

sudo apt-get install apache2

The installing process will not only install, but also start up the web server.


Testing the Web Server

Once the installation is complete the next step is to verify the web server is up and running. To do this fire up the web browser by clicking on the Firefox logo and enter 127.0.0.1/apache2-default in the address bar (127.0.0.1 is the loop-back network address which tells the system to connect to the local machine). The browser should load a page that reads It works!.

Congratulations, you have now installed the web server and served up what will hopefully be the first of many web pages.

Configuring the Apache Web Server for Your Domain

The next step in setting up your web server is to configure it for your domain name. This is performed in the /etc/apache2 directory. To configure the web server open a terminal windows and change directory to /etc/apache2. In this directory you will find two sub-directories, sites-available and sites-enabled. Change directory into sites-enabled. In this directory you will find a default file which may be used as a template for your own site.

Copy the default file to a new file with name which matches your domain name. For example:

sudo cp default myexample.com

Edit your myexample.com file using your favorite editor using the sudo command to ensure you have write permission to the file. The top of the file will appear as follows:

NameVirtualHost *
<VirtualHost *>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www/
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                # This directive allows us to have apache2's default start page
                # in /apache2-default/, but still have / go to the right place
                #RedirectMatch ^/$ /apache2-default/
        </Directory>

The ServerAdmin directive defines an administrative email address for people wishing to contact the web master for your site. Change this to an appropriate email address where you can be contacted:

        ServerAdmin [email protected]

Next it the ServerName and ServerAlias directives need to be defined so that the web server knows which virtual host this configuration file refers to:

        ServerName myexample.com
        ServerAlias www.myexample.com

Next, we need to define where the web site files are going to be located using the DocumentRoot directive. The tradition is to use /var/www/domain-name:

        DocumentRoot /var/www/myexample.com

Next, we need a copy of the /etc/apache2/sites-available/myexample.com configuration file in /etc/apache2/sites-enabled. We do this by creating a symbolic link from the file in sites-available:

cd /etc/apache2/sites-enabled
ln -s /etc/apache2/sites-available/myexample.com .

Next, create the /var/www/myexample.com directory and place an index.html file in it. For example:

<html>
<title>Sample Web Page</title>
<body>
Welcome to MyExample.com
</body>
</html>

The last step is to restart the apache web server to make sure it picks up our new settings:

sudo /etc/init.d/apache2 restart

Web Server and Firewall Issues

If your Ubuntu Linux system is configured to use a firewall, you will need to ensure that HTTP traffic on port 80 is permitted in order for external system to be able to access your web server. Refer to the Basic Ubuntu Linux Firewall Configuration and Using Firestarter to Configure an Ubuntu Linux Firewall chapters of this book for details on configuring Ubuntu Linux Firewalls.

If the Ubuntu Linux system hosting your web server sits on a network protected by a firewall (either another computer running a firewall, or a router or wireless base station containing built in firewall protection) you will need to configure the firewall to forward port 80 to your web server system. The mechanism for performing this differs between firewalls and devices so check your documentation to find out how to configure port forwarding.

Once everything is configured it should be possible to enter the domain name of your web site into a browser anywhere in the world and access your web server.