We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcfa6ec commit bc42251Copy full SHA for bc42251
backend/nginx/api.conf
@@ -10,6 +10,10 @@ server {
10
location = /favicon.ico { access_log off; log_not_found off; }
11
location = /robots.txt { access_log off; log_not_found off; }
12
13
+ # Only allow specific HTTP methods
14
+ if ($request_method !~ ^(GET|POST|OPTIONS)$) {
15
+ return 444;
16
+ }
17
18
location / {
19
proxy_pass http://127.0.0.1:8000; # Forward to FastAPI
0 commit comments