Showing posts in Apache
post image

Configure virtual host in Laravel with Apache

2023-05-25 Apache

One of the first questions that arise after installing Laravel is how to configure a virtual host if you don't want to start the server with the command php artisan serve. Assuming that you have installed an apache server, a laravel application in the rout...

by Darío Rivera


post image

Mutual TLS en Apache

2022-05-20 Apache

<VirtualHost *:443> ServerName my-host.com .... SSLEngine on .... SSLVerifyClient require SSLVerifyDepth 10 SSLCACertificateFile "/path/to/cacert.pem" </VirtualHost> ...

by Darío Rivera




post image

Solución al error "/usr/sbin/apachectl: 113: www-browser: not found"

2022-05-13 Apache

Apache es uno de los web servers más utilizados a lo largo de todo la web. Es fácil de configurar, fácil de instalar y customizable. Al instalar apache por primera vez en Linux y obtener un status del servicio actual puede que obtengas un error como el ...

by Darío Rivera


post image

Configurar TLS/SSL en Apache para sitios HTTPS

2022-04-10 Apache

HTTPS (Protocolo de transferencia de hypertexto seguro) es un protocolo principalmente usado en transferencia de datos entre un navegador y un sitio web. La principal ventaja de este protocolo es que la data no viaje en claro sino que viaja encriptada lo q...

by Darío Rivera


post image

Dónde se guardan los archivos de configuración de Apache ?

2021-08-23 Apache

Puede suceder que en algunas ocasiones se nos olvide cómo configuramos previamente nuestro servidor de Apache y dónde creamos configuración adicional como por ejemplo la relacionada con los virtual hosts. Para ver los archivos de configuración cargados...

by Darío Rivera




post image

Instalación de Apache Haus en Windows

2020-05-26 Apache

Cuando utilizo Windows no soy de las personas que suele instalar Wamp, Xamp o cualquier otra herramienta precompilada "todo en uno" de PHP + Apache + Mysql. Estas herramientas tienen sus ventajas y desventajas, siendo la más importante de sus ventajas la ...

by Darío Rivera


post image

Redirección HTTP a HTTPS en apache

2020-05-24 Apache

Una vez has logrado instalar un certificado SSL en tu sitio web deseas que todo el tráfico actual por HTTP sea redireccionado a HTTPS. Con apache esta labor es bastante sencilla y puedes realizarla de dos maneras principalmente que veremos a coninuación....

by Darío Rivera


post image

Configurar SonarQube con Apache en Linux

2020-01-06 Apache SonarQube 8

Muy seguramente si estás aquí es porque ya instalaste SonarQube, lo configuraste de manera adecuada y como último paso deseas crear un virtual host en apache para acceder de manera amigable. Si no es así, te invito a que revises los siguientes pos...

by Darío Rivera


post image

Configurar virtual host en Laravel con apache

2019-07-02 Apache Apache 2

Una de las primeras preguntas que surgen después de instalar Laravel es cómo se configura un virtual host si no se desea iniciar el server con el comando php artisan serve. Suponiendo que tienes instalado un servidor apache, una aplicación laravel en la...

by Darío Rivera


post image

Configure SonarQube with Apache on Linux.

Apache

Most likely, if you are here it is because you have already installed SonarQube, configured it properly and as a last step you want to create a virtual host in apache to access it in a friendly way. If not, I invite you to review the following posts t...

by Darío Rivera


post image

HTTP redirection to HTTPS in Apache

Apache

Once you have successfully installed an SSL certificate on your website, you want all current traffic over HTTP to be redirected to HTTPS. With Apache, this task is fairly simple and can be done in two main ways, which we will see below.Before continuing w...

by Darío Rivera


post image

Installation of Apache Haus on Windows

Apache

When using Windows, I'm not one of those people who usually installs Wamp, Xamp or any other precompiled "all-in-one" tool for PHP + Apache + Mysql. These tools have their advantages and disadvantages, the most important advantage being the ease and speed ...

by Darío Rivera