Cómo instalar Joomla con Apache y Let’s Encrypt SSL en Debian 10
Joomla es un sistema de gestión de contenidos gratuito y de código abierto que se utiliza para crear, modificar y gestionar el contenido de un sitio web. Es sencillo y fácil de usar, por lo que no necesitas tener conocimientos de HTML o CSS para construir el sitio web. Está escrito en PHP y utiliza MySQL como base de datos. Ofrece una amplia gama de funciones que lo convierten en un sistema de gestión de contenidos flexible desde el primer momento. Viene con cientos de extensiones gratuitas que te permiten personalizar y ampliar la funcionalidad.
En este tutorial, te mostraré cómo instalar Joomla CMS con Apache y Let’s Encrypt en Debian 10.
Requisitos previos
- Un servidor con Debian 10.
- Un nombre de dominio válido apuntado con la IP de tu servidor.
- Una contraseña de root configurada el servidor.
Cómo empezar
En primer lugar, actualiza los paquetes del sistema a la versión actualizada ejecutando el siguiente comando:
apt-get update -y
Una vez actualizados todos los paquetes, puedes pasar al siguiente paso.
Instalar el servidor LAMP
A continuación, tendrás que instalar el servidor web Apache, la base de datos MariaDB, PHP y otras extensiones de PHP en tu sistema. Puedes instalarlos todos con el siguiente comando:
apt-get install apache2 mariadb-server php openssl php-imagick php-common php-curl php-gd php-imap php-intl php-json php-ldap php-mbstring php-mysql php-pgsql php-smbclient php-ssh2 php-sqlite3 php-xml php-zip -y
Una vez instalados todos los paquetes, puedes pasar al siguiente paso.
Crear una base de datos para Joomla
Joomla utiliza MySQL o MariaDB para almacenar su contenido. Así que tendrás que crear una base de datos y un usuario para Joomla.
Primero, conéctate a MariaDB con el siguiente comando:
mysql
Una vez conectado, crea una base de datos y un usuario con el siguiente comando:
MariaDB [(none)]> CREATE DATABASE joomladb;
MariaDB [(none)]> GRANT ALL ON joomladb.* TO 'joomlauser'@'localhost' IDENTIFIED BY 'password';
A continuación, vacía los privilegios y sal del MariaDB con el siguiente comando:
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> EXIT;
Una vez que hayas terminado, puedes pasar al siguiente paso.
Instalar Joomla
A continuación, descarga la última versión de Joomla con el siguiente comando:
wget https://downloads.joomla.org/cms/joomla3/3-9-25/Joomla_3-9-25-Stable-Full_Package.tar.bz2
Una vez completada la descarga, crea un directorio para Joomla dentro de la raíz web de Apache:
mkdir /var/www/html/joomla
A continuación, ejecuta el siguiente comando para extraer el archivo descargado al directorio de Joomla:
bunzip2 Joomla_3-9-25-Stable-Full_Package.tar.bz2
tar -xvf Joomla_3-9-25-Stable-Full_Package.tar -C /var/www/html/joomla/
A continuación, establece el permiso y la propiedad adecuados para el directorio de Joomla con el siguiente comando:
chown -R www-data:www-data /var/www/html/joomla
chmod -R 755 /var/www/html/joomla
Una vez que hayas terminado, puedes pasar al siguiente paso.
Configurar el servidor web Apache
A continuación, tendrás que crear un archivo de configuración del host virtual Apache para alojar el Joomla.
Puedes crearlo con el siguiente comando:
nano /etc/apache2/sites-available/joomla.conf
Añade las siguientes líneas:
<VirtualHost *:80> ServerName joomla.example.com ServerAdmin [email protected] DocumentRoot /var/www/html/joomla <Directory /var/www/html/joomla> Allowoverride all </Directory> </VirtualHost>
Guarda y cierra el archivo y luego habilita el host virtual de Apache con el siguiente comando:
a2ensite joomla
A continuación, reinicia el servicio Apache para aplicar los cambios:
systemctl restart apache2
A continuación, verifica el estado del Apache con el siguiente comando:
systemctl status apache2
Deberías obtener la siguiente salida:
? apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Active: active (running) since Mon 2021-03-22 09:26:20 UTC; 4s ago Docs: https://httpd.apache.org/docs/2.4/ Process: 14495 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS) Main PID: 14499 (apache2) Tasks: 6 (limit: 4701) Memory: 18.8M CGroup: /system.slice/apache2.service ??14499 /usr/sbin/apache2 -k start ??14500 /usr/sbin/apache2 -k start ??14501 /usr/sbin/apache2 -k start ??14502 /usr/sbin/apache2 -k start ??14503 /usr/sbin/apache2 -k start ??14504 /usr/sbin/apache2 -k start Mar 22 09:26:20 debian10 systemd[1]: Starting The Apache HTTP Server...
Accede a Joomla
Ahora, abre tu navegador web y accede a la interfaz web de Joomla utilizando la URL http://joomla.example.com. Serás redirigido a la siguiente página:
Ahora, proporciona el nombre de tu sitio, la dirección de correo electrónico, el nombre de usuario del administrador, la contraseña y haz clic en el botón Siguiente. Deberías ver la siguiente página:
Proporciona el nombre de tu base de datos, el nombre de usuario de la base de datos, la contraseña y haz clic en el botón Siguiente. Deberías ver la siguiente página:
Ahora, confirma todos los ajustes y haz clic en el botón Instalar para iniciar la instalación. Una vez completada la instalación, deberías ver la siguiente página:
Haz clic en Eliminar la carpeta de instalación. Deberías ver la siguiente página:
Ahora, haz clic en el botón Administrador, deberías ver la página de inicio de sesión de Joomla:
Proporciona tus credenciales de administrador y haz clic en el botón de inicio de sesión, deberías ver el panel de control de Joomla en la siguiente imagen:
Asegura Joomla con Let’s Encrypt SSL
Siempre es una buena idea asegurar tu sitio web con Let’s Encrypt SSL. Necesitarás instalar el cliente Certbot para instalar y gestionar el SSL. Puedes instalarlo con el siguiente comando:
apt-get install python3-certbot-apache -y
Una vez instalado el Certbot, ejecuta el siguiente comando para asegurar tu sitio web con Let’s Encrypt SSL:
certbot --apache -d joomla.example.com
Se te pedirá que proporciones tu correo electrónico y aceptes las condiciones del servicio, como se muestra a continuación:
Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected: Authenticator standalone, Installer None Enter email address (used for urgent renewal and security notices) (Enter 'c' to cancel): [email protected] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Please read the Terms of Service at https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must agree in order to register with the ACME server at https://acme-v02.api.letsencrypt.org/directory - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (A)gree/(C)ancel: A - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Would you be willing to share your email address with the Electronic Frontier Foundation, a founding partner of the Let's Encrypt project and the non-profit organization that develops Certbot? We'd like to send you email about our work encrypting the web, EFF news, campaigns, and ways to support digital freedom. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (Y)es/(N)o: Y Plugins selected: Authenticator apache, Installer apache Obtaining a new certificate Performing the following challenges: http-01 challenge for joomla.example.com Enabled Apache rewrite module Waiting for verification... Cleaning up challenges Created an SSL vhost at /etc/apache2/sites-available/joomla-le-ssl.conf Enabled Apache socache_shmcb module Enabled Apache ssl module Deploying Certificate to VirtualHost /etc/apache2/sites-available/joomla-le-ssl.conf Enabling available site: /etc/apache2/sites-available/joomla-le-ssl.conf
A continuación, selecciona si quieres redirigir el tráfico HTTP a HTTPS como se muestra a continuación:
Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: No redirect - Make no further changes to the webserver configuration. 2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for new sites, or if you're confident your site works on HTTPS. You can undo this change by editing your web server's configuration. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2
Escribe 2 y pulsa Intro para instalar el SSL de Let’s Encrypt para tu sitio web:
Enabled Apache rewrite module Redirecting vhost in /etc/apache2/sites-enabled/joomla.conf to ssl vhost in /etc/apache2/sites-available/joomla-le-ssl.conf - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Congratulations! You have successfully enabled https://joomla.example.com You should test your configuration at: https://www.ssllabs.com/ssltest/analyze.html?d=joomla.example.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IMPORTANT NOTES: - Congratulations! Your certificate and chain have been saved at: /etc/letsencrypt/live/joomla.example.com/fullchain.pem Your key file has been saved at: /etc/letsencrypt/live/joomla.example.com/privkey.pem Your cert will expire on 2020-10-23. To obtain a new or tweaked version of this certificate in the future, simply run certbot again with the "certonly" option. To non-interactively renew *all* of your certificates, run "certbot renew" - If you like Certbot, please consider supporting our work by: Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate Donating to EFF: https://eff.org/donate-le
Conclusión
Enhorabuena! has instalado con éxito el CMS de Joomla en el servidor de Debian 10. Ahora puedes construir tu propio sitio web fácilmente usando Joomla. No dudes en preguntarme si tienes alguna duda.