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/ ... ```