From c0aa68b61716c5342cbab419f4807accc54b0206 Mon Sep 17 00:00:00 2001 From: lfuerderer <37334661+lfuerderer@users.noreply.github.com> Date: Sat, 25 May 2024 07:51:55 +0200 Subject: [PATCH] Make clear that Uvicorn creates the file socket, not nginx. --- Production-setup-using-Nginx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Production-setup-using-Nginx.md b/Production-setup-using-Nginx.md index d1d39a9..2609df6 100644 --- a/Production-setup-using-Nginx.md +++ b/Production-setup-using-Nginx.md @@ -108,8 +108,8 @@ upstream etebase { ``` -This will create a file socket at `/tmp/etebase_server.sock`. -Now, we change the way we run Uvicorn to use the same file socket. +This will instruct nginx to connect to a file socket at `/tmp/etebase_server.sock`. +Now, we change the way we run Uvicorn to create this file socket. ```