Skip to content

Commit 8e85a7b

Browse files
fix nginx blocking
1 parent bc42251 commit 8e85a7b

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

backend/nginx/api.conf

+22-6
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,33 @@ server {
66
return 444;
77
}
88

9-
# Block common malicious request patterns
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
9+
# Only allow specific HTTP methods
1410
if ($request_method !~ ^(GET|POST|OPTIONS)$) {
1511
return 444;
1612
}
1713

14+
# Block these requests BEFORE the location / block
15+
location = /favicon.ico {
16+
return 404;
17+
access_log off;
18+
log_not_found off;
19+
}
20+
21+
location = /robots.txt {
22+
return 404;
23+
access_log off;
24+
log_not_found off;
25+
}
26+
27+
# Block access to hidden files
28+
location ~ /\. {
29+
deny all;
30+
access_log off;
31+
log_not_found off;
32+
}
33+
1834
location / {
19-
proxy_pass http://127.0.0.1:8000; # Forward to FastAPI
35+
proxy_pass http://127.0.0.1:8000;
2036
include proxy_params;
2137
proxy_redirect off;
2238
}

0 commit comments

Comments
 (0)