Archive

Posts Tagged ‘apache’

Deploy Django in production using apache, nginx and mod-wsgi

django-apache2-nginx-mod-wsgi
In this post I will show how to deploy a Django applications using Apache with mod-wsgi and nginx.
nginx is used to serve static content as well as proxy requests to Apache. This means faster page loads for users, and lower server loads.

Read more…

Articles

Denying access to files with specific extensions in Apache

apache_deny_access_to_files_with_specific_extensions

Deny access to files with specific extensions

Want to configure Apache web-server to deny user trying to get a file with specific extension like mp3, avi, flv, doc, pdf, txt or other?

Read more…

Tips

Smart way to show Apache loaded modules from shell

Before start to use this tip, I thought that the easiest way to see what modules your Apache is using is to grep for the LoadModule in httpd.conf

These days I found a smart way to print out the Apache modules that are running on the server. Here is the command to run from shell (for Gentoo):

Read more…

Tips