How To Install nginx on CentOS 6 with yum

EPEL stands for Extra Packages for Enterprise Linux. Because yum as a package manager does not include the latest version of nginx in its default repository, installing EPEL will make sure that nginx on CentOS stays up to date. To install EPEL, open terminal and type in: sudo yum install epel-release Step Two—Install nginx To…

Cómo optimizar Apache para usar menos memoria RAM

ApacheBuddy, que es muy similar a MySQLTuner, revisa tu configuración de Apache, y te hace sugerencias basadas en la cantidad de memoria que consume cada proceso Apache de tu servidor y la memoria RAM total que tengas. Aunque es un programa bastante básico, ya que se centra solo en la directiva “MaxClients”, ApacheBuddy es útil,…

suhosin download

If you are running Gentoo Linux or FreeBSD Suhosin is already within your ports system. Users of OpenSuSE Linux, Mandriva Linux or Debian Linux will find Suhosin packages in the distribution. You can install it by following the instructions in the installation manual. If you are using suhosin to protect your PHP servers please consider…

Apache Tips: Disable the HTTP TRACE Method

Applies: apache 1.3.x / apache 2.0.x Required apache module: – Scope: global server configuration Type: security Description: How to disable the HTTP TRACE method on recent apache versions. Most vulnerability scanners (like the popular nessus, but commercial ones also) will complain (normally as a low thread or warning level) about TRACE method being enabled on…

Instalación de las AWStats en Linux con Apache

AWStats es un programa que genera estadísticas gráficas para servidores web. Lo que hace es mostrar el contenido del archivo de log del servidor web de forma gráfica. AWStats se puede usar por medio de CGI o bien desde la propia línea de comandos. Entre las cosas que muestra están el número de visitas, navegadores…

Installing Monit On Linux CentOS Server

monit is an open source software that monitor services on your server. It can restart if any of the service go down. Download latest version of file from http://mmonit.com/monit/download/ cd /usr/local/src wget http://mmonit.com/monit/dist/monit-5.0.3.tar.gz tar -zxvf monit-5.0.3.tar.gz cd monit-5.0.3 ./configure make make install Copy control file to /etc cp monitrc /etc/ Edit /etc/monitrc vi /etc/monitrc At…

mod_evasive

How to install mod_evasive? mod_evasive and mod_security modules are used to secure Apache Web Server from DDoS and brute force attacks by implementing web application firewall. For mod_security installation procedure, please use mod_security howto article. The mod_evasive authoring site (zdziarski.com) states that mod_evasive is an evasive maneuvers module for Apache to provide evasive action in…

bloquear un directorio

<Directory /www/doc/joomla/administrator> Order Deny,Allow Deny from All # empresa Allow from 217.126.228.230 217.126.228.232 # Red de localhost Allow from 193.144.25.0/255.255.255.0 Allow from 193.144.30.0/255.255.255.0 # arturo g Allow from 193.53.3.60 # Red Satec Allow from 213.164.32.0/255.255.252.0 </Directory>