1
0
mirror of https://github.com/etesync/server synced 2024-11-22 08:48:07 +00:00

Make clear that Uvicorn creates the file socket, not nginx.

lfuerderer 2024-05-25 07:51:55 +02:00
parent 9ebcb6efc4
commit c0aa68b617

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