From 8e5dc79f3be7c6cc9caf9fa3a6f23f429c501aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?calvadev=E2=9A=A1=EF=B8=8F?= <32919103+calvadev@users.noreply.github.com> Date: Sat, 21 Sep 2024 11:55:57 -0700 Subject: [PATCH] Update README.md Changed yml file volume path references --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bb684be..0863ac4 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,8 @@ server { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme;proxy_http_version 1.1; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } @@ -186,8 +187,8 @@ To start the project using Docker Compose, follow these steps: ```yaml volumes: - "./db:/app/db" # only change the left side before the colon - - "./templates/index.html:/app/templates/index.html" # only change the left side before the colon - - "./templates/static:/app/templates/static" # only change the left side before the colon + - "./templates/index.html:${INDEX_PATH}" # only change the left side before the colon + - "./templates/static:${INDEX_PATH}" # only change the left side before the colon ``` 5. Run the following command: