LAMP setup: Apache and PHP
After finishing all tasks from previous article about OS configuration of LAMP setup, now is time to move on. LAMP server is secured and waiting for Apache and PHP configuration. Here goes agenda:
- HTTP header
- Hide Apache version
- Hide PHP version
- Turn off needless Apache modules processed as Apache configuration files
- Turn off needless Apache modules loaded in httpd.conf by LoadModule directive
- Turn off directory browsing
- Make webalizer logs accessible only to your IP
- Conclusion
1. HTTP header
Communication between browser and Web server goes through HTTP protocol. Client sends request, and server respondes. Every HTTP respond has HTTP header and HTTP body. In server response, HTTP body is actually HTML interpreted by browser (we can see that). Browser knows that HTTP body comes after empty newline. Everything before empty newline in server response is HTTP header. HTTP header is somehow hidden because browser doesn’t display any of data contained in header, but there are tools and more important bad bots that focuses especially to HTTP header. In HTTP header you can see how Apache by default present himself and not only himself but also the operating system and modules. In the line bellow, you can read PHP version.
HTTP/1.0 200 OK Date: Thu, 31 Jul 2008 06:16:22 GMT Server: Apache/2.2.8 (Fedora) mod_ssl/2.2.9 OpenSSL/0.9.8b X-Powered-By: PHP/5.2.6 X-Pingback: http://www.redips.net/xmlrpc.php Connection: close Content-Type: text/html; charset=UTF-8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="author" content="Darko Bunić"/> <title>Redips | spideR Net</title> ... ...
HTTP header can be explored by FireFox add-ons Firebug and Web Developer, command line utility wget with -d switch and so on.
2. Hide Apache version
Open httpd.conf file. In Linux/Unix installations it should be placed inside /etc directory and in RedHat family it is in /etc/httpd/conf/httpd.conf. Two lines have to be changed: ServerTokens and ServerSignature. Edit them to look like:
# return only "Server: Apache" in HTTP header instead of Apache version, OS and modules ServerTokens Prod # hide line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory # listings, mod_status and mod_info output etc) ServerSignature Off
3. Hide PHP version
php.ini is PHP configuration file usually located at /etc/php.ini. Open file and try to find expose_php directive. By default, it is turned on and to completely remove PHP version from HTTP header write “Off” and save php.ini file.
# Decides whether PHP may expose the fact that it is installed on the server # (e.g. by adding its signature to the Web server header). It is no security # threat in any way, but it makes it possible to determine whether you use PHP # on your server or not. expose_php = Off
4. Turn off needless Apache modules processed as Apache configuration files
In RedHat family, inside /etc/httpd/conf.d directory, Apache holds module-specific configuration files. Any files in this directory which have the “.conf” extension will be processed as Apache configuration files. After fresh Apache installation inside conf.d you will find:
> cd /etc/httpd/conf.d > ls -la drwxr-xr-x 2 dbunic dbunic 4096 2008-07-11 08:01 . drwxr-xr-x 4 dbunic dbunic 4096 2008-06-04 13:34 .. -rw-r--r-- 1 dbunic dbunic 295 2005-12-07 17:45 manual.conf # adds URL /manual to Web site -rw-r--r-- 1 dbunic dbunic 1796 2005-04-22 14:53 perl.conf # Perl module -rw-r--r-- 1 dbunic dbunic 560 2008-05-08 16:26 php.conf # PHP module -rw-r--r-- 1 dbunic dbunic 566 2005-12-05 18:26 proxy_ajp.conf # brings support for Tomcat -rw-r--r-- 1 dbunic dbunic 1671 2008-02-25 13:05 python.conf # Python module -rw-r--r-- 1 dbunic dbunic 392 2008-02-25 13:09 README -rw-r--r-- 1 dbunic dbunic 332 2008-07-02 11:32 squid.conf # uses squid as caching system -rw-r--r-- 1 dbunic dbunic 9677 2005-12-05 18:26 ssl.conf # provides SSL support -rw-r--r-- 1 dbunic dbunic 352 2004-09-09 16:22 webalizer.conf # defines access to Web statistics -rw-r--r-- 1 dbunic dbunic 299 2004-09-09 08:16 welcome.conf # enables "Welcome" page
Almost certainly for LAMP setup, you will need only php.conf and webalizer.conf all other files should be renamed. Add extension “.off” and they will not be processed by Apache, and if you want to have nice sort with “ls”, give them “off_” prefix. After renaming, you will have list like this:
> cd /etc/httpd/conf.d > ls -la drwxr-xr-x 2 dbunic dbunic 4096 2008-07-31 09:58 . drwxr-xr-x 4 dbunic dbunic 4096 2008-06-04 13:34 .. -rw-r--r-- 1 dbunic dbunic 295 2005-12-07 17:45 off_manual.conf.off -rw-r--r-- 1 dbunic dbunic 1796 2005-04-22 14:53 off_perl.conf.off -rw-r--r-- 1 dbunic dbunic 566 2005-12-05 18:26 off_proxy_ajp.conf.off -rw-r--r-- 1 dbunic dbunic 1671 2008-02-25 13:05 off_python.conf.off -rw-r--r-- 1 dbunic dbunic 332 2008-07-02 11:32 off_squid.conf.off -rw-r--r-- 1 dbunic dbunic 9677 2005-12-05 18:26 off_ssl.conf.off -rw-r--r-- 1 dbunic dbunic 299 2004-09-09 08:16 off_welcome.conf.off -rw-r--r-- 1 dbunic dbunic 560 2008-05-08 16:26 php.conf -rw-r--r-- 1 dbunic dbunic 392 2008-02-25 13:09 README -rw-r--r-- 1 dbunic dbunic 352 2004-09-09 16:22 webalizer.conf
5. Turn off needless Apache modules loaded in httpd.conf by LoadModule directive
Apache also load modules from main httpd.conf file. There is huge list of modules to load by default. Some of them are needless for LAMP setup. Here is my excluded modules list.
#LoadModule authn_dbm_module modules/mod_authn_dbm.so #LoadModule authz_dbm_module modules/mod_authz_dbm.so #LoadModule ldap_module modules/mod_ldap.so #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so #LoadModule deflate_module modules/mod_deflate.so #LoadModule usertrack_module modules/mod_usertrack.so #LoadModule dav_module modules/mod_dav.so #LoadModule dav_fs_module modules/mod_dav_fs.so #LoadModule speling_module modules/mod_speling.so #LoadModule proxy_module modules/mod_proxy.so #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so #LoadModule proxy_http_module modules/mod_proxy_http.so #LoadModule proxy_connect_module modules/mod_proxy_connect.so #LoadModule cgi_module modules/mod_cgi.so
Proxy, speling, dav, ldap are candidates for sure to be turned off. I don’t use output compression so I turned off mod_deflate too. Same for mod_cgi, authn_dbm_module and authz_dbm_module. When you start to comment out needless modules be careful because of existing module dependencies. For example if you comment proxy_module only, but you leave proxy_balancer_module, proxy_ftp_module … httpd will not run after restart. Instead there will be printed error message:
httpd: Syntax error on line 189 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/modules/mod_proxy_balancer.so into server: /etc/httpd/modules/mod_proxy_balancer.so: undefined symbol: proxy_module
To avoid such a problem, run httpd.conf test before restarting server.
# Run syntax tests for configuration files only. # The program immediately exits after these syntax parsing tests. /usr/sbin/httpd -t
If httpd.conf is correct (no dependence problems), Syntax OK will be printed, otherwise you will get error message.
Anyway, why to turn off needless Apache modules? In short, Apache will start faster and will use less resources - especially memory. Why is that important? Because server will be able to handle more httpd child processes and that finally means: more requests per second.
6. Turn off directory browsing
In default Apache configuration, HTTP request on directory without index page will result with directory listing. This “feature” should be turned off. Open httpd.conf and find <Directory “/var/www/html”> where goes directives for document root. Inside should be Options directive with options Indexes and FollowSymLinks. Just place “-” (minus) before Indexes.
# The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#options # for more information. Options -Indexes FollowSymLinks
FollowSymLinks enables Apache to follows symbolic links. If you haven’t any symbolic links inside document root turn it off too with “-” before like -FollowSymLinks.
7. Make webalizer logs accessible only to your IP
After all this settings, it is good to monitor and analyse Web traffic. Why? First of all, only owner have to has ability to access Web statistics to avoid “referer spam” attack. What is referer spam attack? Client with fake referer frequently accesses site with public Web statistic and his only goal is to appear on referer top list. This way they got free link to advertise. Many useful informations can be read from Web statistic. For example, when is minimum load of site then is perfect time for backup and database optimization, or you can see top list of sites by hits and KBytes etc. By default, webalizer.conf allows access only from local host. Comment this two lines and add one with your IP or name like in example:
<Location /usage> Order deny,allow Deny from all # Allow from 127.0.0.1 # Allow from ::1 Allow from 123.123.123.123 Allow from your.site.name </Location>
8. Conclusion
If you install LAMP server and run it immediately without any of steps mention here it will certainly work. On the other hand if you finish every of this steps, your site will not became unbreakable. Bottom line is, if you complete these steps, you will minimize possibility to be attacked and attacker will move on to find easier target.
Now it’s time to make it faster!
21.08.2008. at 17:40
Real good article! cheers
02.09.2008. at 13:19
Thank you for your comment and I’m glad that you found useful informations here.