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

feat: Document Edge app https redirect #96

Merged
merged 1 commit into from
Aug 2, 2024
Merged
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
20 changes: 20 additions & 0 deletions pages/edge/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,26 @@ The `debug` field is used to enable debug mode for the application. This in turn
- Required: `false`
- Default: `false`

### `redirect`

#### `redirect.force_https`

Redirect all HTTP requests to HTTPS.

**NOTE**: the default value is `true`, so HTTP requests will be redirected to
HTTPS automatically.

Set this value to `false` to disable redirects.

- Required: `false`
theduke marked this conversation as resolved.
Show resolved Hide resolved
- Default: `true`

Example:
```yaml filename="app.yaml" copy
redirect:
force_https: false
```

### `capabilities`

#### `instaboot`
Expand Down
Loading