-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NODE-5465 Bump versions: Alpine 3.20, Nginx 1.26.1
- Loading branch information
Showing
6 changed files
with
25 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# wallarm-apifw-loc, required for APIFW. | ||
|
||
# Will be automatically included in each "server" section of the NGINX configuration | ||
# to enable the API Firewall functionality. | ||
|
||
location ~ ^/wallarm-apifw(.*)$ { | ||
wallarm_mode off; | ||
proxy_pass http://127.0.0.1:8088$1; | ||
error_page 404 431 = @wallarm-apifw-fallback; | ||
error_page 500 502 503 504 = @wallarm-apifw-fallback; | ||
allow 127.0.0.0/8; | ||
deny all; | ||
} | ||
|
||
location @wallarm-apifw-fallback { | ||
wallarm_mode off; | ||
return 500 "API FW fallback"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters