Lighttpd (
pronunciado lighty) es un servidor web diseñado para ser rápido, seguro, flexible, y fiel a los estándares. Está optimizado para entornos donde la velocidad es muy importante, y por eso consume menos CPU y memoria RAM que otros servidores. Por todo lo que ofrece,
lighttpd es apropiado para cualquier servidor que tenga problemas de carga.
En este tutorial usaremos el hostname
servidor.dominio.com con la dirección IP
192.168.0.100 (ustedes usen su propia información)
1. Instalación de MySQL
# yum install mysql mysql-server
Ahora creamos los links de inicio para MySQL e iniciamos MySQL.
# chkconfig --levels 235 mysqld on
# /etc/init.d/mysqld start
Ahora continuamos con la post instalación de MySQL
# mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!In order to log into MySQL to secure it, we'll need the currentpassword for the root user. If you've just installed MySQL, andyou haven't set the root password yet, the password will be blank,so you should just press enter here.Enter current password for root (enter for none): <-- ENTEROK, successfully used password, moving on...Setting the root password ensures that nobody can log into the MySQLroot user without the proper authorisation.Set root password? [Y/n] <-- ENTERNew password: <-- Escribir el PasswordRe-enter new password: <-- Confirmar el PasswordPassword updated successfully!Reloading privilege tables.. ... Success!By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment.Remove anonymous users? [Y/n] <-- ENTER ... Success!Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] <-- ENTER ... Success!By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment.Remove test database and access to it? [Y/n] <-- ENTER - Dropping test database... ... Success! - Removing privileges on test database... ... Success!Reloading the privilege tables will ensure that all changes made so far will take effect immediately.Reload privilege tables now? [Y/n] <-- ENTER ... Success!Cleaning up...All done! If you've completed all of the above steps, your MySQLinstallation should now be secure.Thanks for using MySQL!
2. Instalación de Lighttpd
# yum install lighttpd
Ahora creamos los links de inicio para Lighttpd e iniciamos Lighttpd.
# chkconfig --levels 235 lighttpd on
# /etc/init.d/lighttpd start
Para comprobar que todo vaya bien, abrimos el navegador y nos dirigimos a http://192.168.0.100/ y veremos la página de inicio de Lighttpd.
En Fedora, el directorio default de Lighttpd es
/var/www/lighttpd y el archivo de configuración
/etc/lighttpd/lighttpd.conf.
3. Instalación de PHP5
Podemos hacer que PHP5 trabaje en Lighttpd por medio de FastCGI. Por tanto, instalamos los paquetes
lighttpd-fastcgi y
php-cli.
# yum install lighttpd-fastcgi php-cli
4. Configurando Lighttpd y PHP5.
Para habilitar PHP5 en Lighttpd, debemos modificar dos archivos,
/etc/php.ini y
/etc/lighttpd/lighttpd.conf. Primero abrimos
/etc/php.ini descomentamos la línea
cgi.fix_pathinfo=1:
[...]
; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
; http://www.php.net/manual/en/ini.core.php#ini.cgi.fix-pathinfo
cgi.fix_pathinfo=1
[...]
Luego abrimos
/etc/lighttpd/lighttpd.conf y descomentamos "
mod_fastcgi", en la sección
server.modules:
[...]server.modules = (# "mod_rewrite",# "mod_redirect",# "mod_alias", "mod_access",# "mod_trigger_b4_dl",# "mod_auth",# "mod_status",# "mod_setenv", "mod_fastcgi",# "mod_proxy",# "mod_simple_vhost",# "mod_evhost",# "mod_userdir",# "mod_cgi",# "mod_compress",# "mod_ssi",# "mod_usertrack",# "mod_expire",# "mod_secdownload",# "mod_rrdtool", "mod_accesslog" )[...]
Luego, mas abajo en el archivo existe una sección fastcgi.server y descomentamos como se muestra a continuación:
[...]#### fastcgi module## read fastcgi.txt for more info## for PHP don't forget to set cgi.fix_pathinfo = 1 in the php.inifastcgi.server = ( ".php" => ( "localhost" => ( "socket" => "/var/run/lighttpd/php-fastcgi.socket", "bin-path" => "/usr/bin/php-cgi" ) ) )[...]
Luego reiniciamos Lighttpd:
# /etc/init.d/lighttpd restart
5. Probar la instalación.
En el document root /var/www/lighttpd creamos un archivo PHP (info.php) y lo invocamos desde el navegador:
# cd /var/www/lighttpd
# vi info.php
<?phpphpinfo();?>
Al invocar el archivo desde el navegador http://192.168.1.100/info.php, veremos:
Como podemos observar, PHP está trabajando, y lo está haciendo vía FastCGI como lo indica la línea
Server API.
6. Instalación de MySQL y soporte con PHP5.
Para dar soporte MySQL en PHP solo necesitamos el paquete
php-mysql. Es buena idea instalar algunos otros modulos de acuerdo a nuestras necesidades, por ejemplo:
# yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc
Por último, reiniciar Lighttpd:
# /etc/init.d/lighttpd restart
Ahora refrescamos la página http://192.168.1.100/info.php y validamos los nuevos módulos instalados.
Listo, nos vemos en la siguiente entrada.