File tree 1 file changed +22
-6
lines changed
1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,33 @@ server {
6
6
return 444;
7
7
}
8
8
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
14
10
if ($request_method !~ ^(GET|POST|OPTIONS)$) {
15
11
return 444;
16
12
}
17
13
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
+
18
34
location / {
19
- proxy_pass http://127.0.0.1:8000; # Forward to FastAPI
35
+ proxy_pass http://127.0.0.1:8000;
20
36
include proxy_params;
21
37
proxy_redirect off;
22
38
}
You can’t perform that action at this time.
0 commit comments