File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
server {
2
2
server_name api.gitdiagram.com;
3
3
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
+
4
14
location / {
5
15
proxy_pass http://127.0.0.1:8000; # Forward to FastAPI
6
16
include proxy_params;
@@ -13,8 +23,6 @@ server {
13
23
proxy_read_timeout 300;
14
24
send_timeout 300;
15
25
16
- # todo: stop weird requests from being made
17
-
18
26
listen 443 ssl; # managed by Certbot
19
27
ssl_certificate /etc/letsencrypt/live/api.gitdiagram.com/fullchain.pem; # managed by Certbot
20
28
ssl_certificate_key /etc/letsencrypt/live/api.gitdiagram.com/privkey.pem; # managed by Certbot
You can’t perform that action at this time.
0 commit comments