From ae775b9b0eef37dd30d7b2995b98ca20c8dfe3fe Mon Sep 17 00:00:00 2001 From: Parker Date: Mon, 2 Dec 2024 23:52:48 -0600 Subject: [PATCH] `/docs/` -> `/docs` --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index cd8f14b..68efd35 100644 --- a/nginx.conf +++ b/nginx.conf @@ -19,7 +19,7 @@ server { real_ip_recursive on; } # Proxy docs to FastAPI - location /docs/ { + location /docs { proxy_pass http://localhost:5252/docs; } # Proxy /openapi.json to FastAPI