Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ map $request_method $purge_method {
}
```

In this example, NGINX checks if the `PURGE` method is used in a request, and, if so, analyzes the client IP address. If the IP address is whitelisted, then the `$purge_method` is set to `$purge_allowed`: `1` permits purging, and `0` denies it.
In this example, NGINX checks if the `PURGE` method is used in a request, and, if so, analyzes the client IP address. If the IP address is allowed to, then the `$purge_method` is set to `$purge_allowed`: `1` permits purging, and `0` denies it.

<span id="purge_remove"></span>
### Completely Remove Files from the Cache
Expand Down
2 changes: 1 addition & 1 deletion content/nginx/deployment-guides/single-sign-on/auth0.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ With Auth0 configured, you can enable OIDC on NGINX Plus. NGINX Plus serves as t

- The **logout_uri** is URI that a user visits to start an RP‑initiated logout flow.

- The **post_logout_uri** is absolute HTTPS URL where Auth0 should redirect the user after a successful logout. This value **must also be whitelisted** in **Allowed Logout URLs** on the Auth0 side.
- The **post_logout_uri** is absolute HTTPS URL where Auth0 should redirect the user after a successful logout. This value **must also be specified** in **Allowed Logout URLs** on the Auth0 side.

- If the **logout_token_hint** directive set to `on`, NGINX Plus sends the user’s ID token as a *hint* to Auth0.
This directive is **optional**, however, if it is omitted the Auth0 may display an extra confirmation page asking the user to approve the logout request.
Expand Down