Apache configuration on Ubuntu – part 2


We continue to look at apache configuration options for your Ubuntu server.

More apache settings

In the previous article we covered several of the settings apache uses to manage incoming connections. Let’s highlight some other directives apache looks for in its config files.

ServerName

Default: Not Set
The ServerName is usually a hostname or a FQDN (Fully-Qualified Domain Name).
If you followed the apache install article, you will have already set the ServerName configuration.
If you don’t set the ServerName then on an Apache restart you might see the following warning:
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
To stop the warning and set the ServerName, add the following to the apache config, preferably in its own file in the apache conf.d directory:
ServerName demo.example.com
Remember the test slice has a hostname of “demo”, which is what we’re using above. Since the ServerName can determine how apache identifies its own address to clients, it’s usually best to use a fully-qualified domain name here.

AccessFileName

Default:
AccessFileName .htaccess
We’ll go into more detail about this directive when we discuss virtual hosts, but for now it’s good to note that this directive is first set in the main apache config. The AccessFileName describes a file that can be added to a directory to override the options set in the main configuration. You might consider disabling this directive in the main apache config file, then only enabling it in the specific virtual hosts where you will use it.

ErrorLog

Default:
ErrorLog /var/log/apache2/error.log
This directive describes the location where apache will log any errors by default. This is another of those directives that can be overridden at the virtual host level.

Security Settings

It’s a particularly good idea to review a couple of security-related settings for apache — ServerTokens and ServerSignature — which you’ll find stored by default in the “security” config file:
/etc/apache2/conf.d/security

ServerTokens

Default:
ServerTokens OS
The ServerTokens setting will dictate how much information is sent in the Headers with regard to Apache version and modules in use.
The default (OS) would send something like this:
Apache/2.2.14 (Ubuntu) Server
This isn’t information most users will care about, and hopefully won’t even see (since it’s embedded in the headers, and displayed on default error messages). But more villainous types who are looking for ways to break into your server will certainly look at that output and use it to their advantage (if there were a known exploit for apache 2.2.14, for example).
Reducing the amount of information apache gives out about itself does not make the actual install any more secure but all someone has to do right now is look for an exploit in your version of Ubuntu-distributed apache. Why make things easy for them?
The options for this setting are (with sample output):
Full
Apache/2.2.14 (Ubuntu) PHP/5.3.2-1ubuntu4.1 with Suhosin-Patch
OS
Apache/2.2.14 (Ubuntu) Server
Minimal
Apache/2.2.14 Server
Minor
Apache/2.2 Server
Major
Apache/2 Server
Prod
Apache Server
See how the server information gets less and less specific as you go down the list? It’s up to you what level of info you want to give out, but most users will be fine just setting ServerTokens to “Prod”.

ServerSignature

Default:
ServerSignature On
Server generated pages, such as 404 pages or directory listings, can contain a footer line which includes server information (which we configured via ServerTokens), and can also include the ServerAdmin email address.
If you navigate to your server IP address and try to access a non-existent page, you will see a 404 Page not found page with the footer information For an older Ubuntu install, it would look like this:
Apache  ServerSignature
Some browsers replace this default error page with their own – sometimes looking for a “View page source” option in those browsers will let you see the text from the original page.
The options for ServerSignature are:
Off: Produces no footer
On: Produces footer information (at a level defined by the ServerTokens setting)
Email: Adds an email link to the information (email address is defined in the vhosts file with the ServerAdmin setting)
Keep in mind that many security settings can be overridden by a virtual host file.
If you disable the ServerSignature in the “security” config file, but a virtual host file has:
ServerSignature On
Then the global setting will be overridden and a footer will still be displayed on 404 pages, etc. for any sites associated with that virtual host.

Summary

You should now have a basic idea of the main settings you can use to customize apache for your environment. Following up by looking at some other settings defined in apache’s config files can be beneficial as well, just to know what’s going on behind the scenes.
All that should remain now, if you’re following this tutorial series, is to set up the virtual hosts for your web server.

Related Posts

Subscribe Our Newsletter