Skip to content

Commit 6db008f

Browse files
ci: apply automated fixes
1 parent c4d53fa commit 6db008f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/agent/cli-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ thus a private key is not included in the resource.
13951395
| --------------------------------------------------- | ----------------------------------------------- |
13961396
| [create](#ngrok-api-certificate-authorities-create) | Upload a new Certificate Authority |
13971397
| [delete](#ngrok-api-certificate-authorities-delete) | Delete a Certificate Authority |
1398-
| [get](#ngrok-api-certificate-authorities-get) | Get detailed information about a certificate... |
1398+
| [get](#ngrok-api-certificate-authorities-get) | Get detailed information about a certificate... |
13991399
| [list](#ngrok-api-certificate-authorities-list) | List all Certificate Authority on this account |
14001400
| [update](#ngrok-api-certificate-authorities-update) | Update attributes of a Certificate Authority... |
14011401

docs/agent/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ Authtoken ACLs restrict what actions an ngrok agent connecting with that
132132
authtoken is allowed to take. You may define multiple ACLs. Authtokens with no
133133
ACLs may take all actions. The following ACLs are supported:
134134
135-
| Example | Description |
136-
| -------------------- | ------------------------------------------------------------------------ |
137-
| `bind:foo.ngrok.app` | The agent may only create an endpoint on `foo.ngrok.app` |
138-
| `bind:*.example.com` | The agent may only create endpoints on subdomains of `example.com` |
135+
| Example | Description |
136+
| -------------------- | -------------------------------------------------------------------------- |
137+
| `bind:foo.ngrok.app` | The agent may only create an endpoint on `foo.ngrok.app` |
138+
| `bind:*.example.com` | The agent may only create endpoints on subdomains of `example.com` |
139139
| `bind:foo=bar` | The agent may create a labeled endpoint with the label `foo=bar` |
140140
| `bind:app=*` | The agent may create labeled endpoints with labels like `app=x` or `app=y` |
141-
| `bind:*` | The agent may listen on all endpoints |
141+
| `bind:*` | The agent may listen on all endpoints |
142142
143143
## API Keys
144144

docs/pricing-limits/free-plan-limits.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import Tabs from "@theme/Tabs";
88

99
Learn about the limits enforced in the free ngrok for developers plan.
1010

11-
:::note
11+
:::note
1212
The free tier does NOT have timeouts on tunnels. If you'd like to run your endpoint all the time, you can do so, on the free tier, as a [background service](https://ngrok.com/docs/agent/#background-service).
13-
:::
13+
:::
1414

1515
:::tip
1616
See [Pricing and Limits](https://ngrok.com/pricing?ref=docs) to learn how to increase or remove these limits.

docs/universal-gateway/domains.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Reserving subdomains of a wildcard domain within the ngrok dashboard count towar
7878

7979
### Random Domains
8080

81-
For some applications, you may not care much about the actual domain for the endpoint. Generating these can be a pain, so we've included an easy way
81+
For some applications, you may not care much about the actual domain for the endpoint. Generating these can be a pain, so we've included an easy way
8282
to create and use these for endpoints. Using the value `https://${randomUrl}` in the `url` field will generate a random url for you to use with your endpoint.
8383

8484
```bash

docs/using-ngrok-with/virtualHosts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Virtual hosts (MAMP, WAMP, etc)
44

55
# Using ngrok with Virtual hosts (MAMP, WAMP, etc)
66

7-
Popular web servers such as MAMP and WAMP rely on a technique popularly referred to as 'Virtual Hosting' which means that they consult the HTTP request's `Host` header to determine which of their multiple sites they should serve. To expose a site like this it is possible to ask ngrok to rewrite the `Host` header of all requests to match what your web server expects. You can do this by using the `--host-header` option (see: [Rewriting the Host header](/universal-gateway/http/#rewrite-host-header)) to pick which virtual host you want to target. For example, to route to your local site `myapp.dev`, you would run:
7+
Popular web servers such as MAMP and WAMP rely on a technique popularly referred to as 'Virtual Hosting' which means that they consult the HTTP request's `Host` header to determine which of their multiple sites they should serve. To expose a site like this it is possible to ask ngrok to rewrite the `Host` header of all requests to match what your web server expects. You can do this by using the `--host-header` option (see: [Rewriting the Host header](/universal-gateway/http/#rewrite-host-header)) to pick which virtual host you want to target. For example, to route to your local site `myapp.dev`, you would run:
88

99
ngrok http --host-header=myapp.dev 80
1010

0 commit comments

Comments
 (0)