Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move ntlm, acl examples to security directory #1501

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions distribution/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@

| Example | Description |
|------------------------------------------------------------------------|-----------------------------------------------------|
| [acl](acl) | Restrict access to APIs by ip address or hostnames. | |
| [acl](security/acl) | Restrict access to APIs by ip address or hostnames. | |
| [basic-auth](security/basic-auth) | _HTTP Basic Authentication_ to secure APIs or Web pages with username and password. |
| [json-protection](security/json-protection) | Validate JSON documents and limit document attributes. |
| [login page](login) | Protect Web pages using a login page and passwords. |
| [ntlm](ntlm) | Authentication against NTLM protected backends e.g. running on Microsoft IIS |
| [ntlm](security/ntlm) | Authentication against NTLM protected backends e.g. running on Microsoft IIS |
| [oauth2](oauth2) | Please follow https://www.membrane-soa.org/service-proxy-doc/current/oauth2-password-flow-sample.htm |
| [openapi](openapi) | Load APIs from OpenAPI documents and validate requests and responses against OpenAPI. | |
| [rateLimiter](rateLimiter) | The `RateLimiter` limits the number of requests in a given interval. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In this example we will make an HTTP GET request call to secured resources.

To run the example execute the following steps:

1. Go to the `examples/acl` directory.
1. Go to the `examples/security/acl` directory.

2. Execute `service-proxy.bat`

Expand Down Expand Up @@ -52,7 +52,7 @@ Further a AccessControl interceptor is added to the serviceProxy.
The value of the attribute 'file' is the name of the access control list XML file.
Before processing the first request, the ACL file is read, and the access control component is initialized.

Next take a look at `acl.xml` file located under the `examples/acl` directory:
Next take a look at `acl.xml` file located under the `examples/security/acl` directory:

```
<accessControl>
Expand Down
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E.g. this file contains ..\..

Copy link
Collaborator Author

@t-burch t-burch Jan 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should wait until we replace all scripts with the new path independent versions

File renamed without changes.
Loading