Tag: apache2

  • Lets Encrypt with Virtualmin

    Virtualmin now supports Let Encrypt, this means you can easily get multiple SSL certificates easily and free if needed. Here is how you can set that up. Step 1: Login to your virtualmin, select the domain from the drop down in the top left. Step 2: Click ‘Edit Virtual Server’ , under the ‘Enabled Features’…

  • Apache exploit may crash your server – heres how to fix it

    We have picked up that there was an exploit in Apache which can result in your server running out of memory. the discovery was noticed quiet some time ago, but never fixed, and it seems to have reared its head publicly resulting in some people actively attacking. There is no patch for apache as yet,…

  • mod_flvx – flv movies working with apache/apache2

    Want to do some streaming of flv on your site? heres how! cd /usr/local/src wget http://people.apache.org/~pquerna/modules/mod_flvx.c apxs -i -a -c mod_flvx.c if apxs does not exist, then apxs2 should. If neither do then install the apache dev packages Debian based distros use apt-get install apache2-prefork-dev The module load will automatically be created for you usually,…

  • apache modules to help keep your system steady

    libapache2-mod-bw – bandwidth limiting module This module allows you to limit bandwidth usage on every virtual host or directory or to restrict the number of simultaneous connections. The bandwidth control, for example, can be configured according to the criteria: origin of the connection, file extension, file size or user agent of the client. Example: LoadModule…