Skip to content
Closed
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
3 changes: 0 additions & 3 deletions docs/admin/markdown.mdx

This file was deleted.

5 changes: 5 additions & 0 deletions docs/admin/tls_ssl.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: TLS test page
---

# TLS test page
2 changes: 1 addition & 1 deletion docs/batch-changes/server-side.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Running batch changes server-side has been tested to run a simple **45K changese

By default, docker on mac will build docker images for `linux/arm64`, which will result in errors when running server-side because executors provide `linux/amd64` hosts. If you're creating your own images to run in batch changes, this can be a problem. Use the `--platform linux/amd64` flag with `docker build` to build images compatible with the server-side host.

## Using file mounts with server-side execution
## Using file mounts with SSBC

<Callout type="note">
Running a batch spec server-side with file mounts is currently only
Expand Down
20 changes: 20 additions & 0 deletions src/data/redirects.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
import {TECHNICAL_CHANGELOG_RSS_URL} from './constants';

const redirectsData = [
{
source: "/docs/old-prefixed",
destination: "/code-ownership"
},
{
source: "/old-chain",
destination: "/admin/http_https_configuration"
},
{
source: "/old-ownership",
destination: "/code-ownershp"
},
{
source: "/old-ownership#anchor",
destination: "/code-ownership"
},
{
source: '/integration/img/disable_extension.png',
destination: '/integration/img/disable-extension.png'
Expand Down Expand Up @@ -5894,6 +5910,10 @@ const redirectsData = [
source: '/code-search/how-to/create-search-context-graphql',
destination: '/api'
},
{
source: "/admin/http_https_configuration",
destination: "/self-hosted/http-https-configuration"
}
];

const updatedRedirectsData = redirectsData.map(redirect => {
Expand Down
Loading