Skip to content

Commit

Permalink
Remove skip verification on GET and HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
hweawer committed Jan 13, 2025
1 parent dc4fda0 commit a8654df
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions nginx/config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ set $required_verified_client 1;
if ($scheme = http) {
set $required_verified_client 0;
}
if ($request_method ~ ^(GET|HEAD)$) {
set $required_verified_client 0;
}
if ($remote_addr = "127.0.0.1") {
set $required_verified_client 0;
}
Expand Down

0 comments on commit a8654df

Please sign in to comment.