We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 418a25d commit bd29cc7Copy full SHA for bd29cc7
content/includes/use-cases/monitoring/enable-nginx-plus-api.md
@@ -31,14 +31,14 @@ server {
31
# For methods other than GET, require auth and restrict to a network
32
limit_except GET {
33
# Prompt for credentials with this realm
34
- auth_basic "NGINX Plus API";
+ auth_basic "NGINX Plus API";
35
# Path to the file with usernames and passwords
36
auth_basic_user_file /path/to/passwd/file;
37
38
# Allow only this IP range (replace with your own)
39
- allow 192.0.2.0/24;
+ allow 192.0.2.0/24;
40
# Deny all other IPs
41
- deny all;
+ deny all;
42
}
43
44
0 commit comments