Skip to content

Commit bc42251

Browse files
block weird methods with nginx
1 parent bcfa6ec commit bc42251

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backend/nginx/api.conf

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ server {
1010
location = /favicon.ico { access_log off; log_not_found off; }
1111
location = /robots.txt { access_log off; log_not_found off; }
1212

13+
# Only allow specific HTTP methods
14+
if ($request_method !~ ^(GET|POST|OPTIONS)$) {
15+
return 444;
16+
}
1317

1418
location / {
1519
proxy_pass http://127.0.0.1:8000; # Forward to FastAPI

0 commit comments

Comments
 (0)