Skip to content

Commit bcfa6ec

Browse files
block weird requests from nginx level
1 parent b5a2492 commit bcfa6ec

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

backend/nginx/api.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
server {
22
server_name api.gitdiagram.com;
33

4+
# Block requests with no valid Host header
5+
if ($host !~ ^(api.gitdiagram.com)$) {
6+
return 444;
7+
}
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+
414
location / {
515
proxy_pass http://127.0.0.1:8000; # Forward to FastAPI
616
include proxy_params;
@@ -13,8 +23,6 @@ server {
1323
proxy_read_timeout 300;
1424
send_timeout 300;
1525

16-
# todo: stop weird requests from being made
17-
1826
listen 443 ssl; # managed by Certbot
1927
ssl_certificate /etc/letsencrypt/live/api.gitdiagram.com/fullchain.pem; # managed by Certbot
2028
ssl_certificate_key /etc/letsencrypt/live/api.gitdiagram.com/privkey.pem; # managed by Certbot

0 commit comments

Comments
 (0)