From 226c2a6ecf92d0df3e9749cbd9d8fee9ef8f7edd Mon Sep 17 00:00:00 2001 From: sysadmin Date: Wed, 6 May 2026 23:14:08 -0400 Subject: [PATCH] Actualizar README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fb0c392..4df7d88 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Utilizando la función proxy_pass de la aplicación de nginx, se agrega servidor ``` comando docker compose ``` -* Agregar el archivo de configuración `webapp1.conf` al directorio de configuración de nginx. -```[docker_compose_dir]/nginx/webapp1.conf +* Agregar el archivo de configuración `webapp1.conf` al directorio de configuración de nginx. [docker_compose_dir]/nginx/webapp1.conf +``` server { listen 443 ssl; @@ -48,11 +48,11 @@ server { } ``` -* Modificar el archivo -```[docker_compose_dir]/nginx/Dockerfile +* Modificar el archivo [docker_compose_dir]/nginx/Dockerfile +``` ... COPY default.conf /etc/nginx/conf.d/default.conf -COPY webapp1.conf /etc/nginx/conf.d/webapp1.conf +`COPY webapp1.conf /etc/nginx/conf.d/webapp1.conf` COPY options-ssl-nginx.conf /etc/nginx/ ... ```