diff --git a/docs/admin/markdown.mdx b/docs/admin/markdown.mdx deleted file mode 100644 index 3308e167f..000000000 --- a/docs/admin/markdown.mdx +++ /dev/null @@ -1,3 +0,0 @@ -# Sourcegraph-flavored Markdown - -Sourcegraph uses [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/) anywhere Markdown is rendered. We like this [Markdown cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) for reference. diff --git a/docs/admin/tls_ssl.mdx b/docs/admin/tls_ssl.mdx new file mode 100644 index 000000000..11c9a2c37 --- /dev/null +++ b/docs/admin/tls_ssl.mdx @@ -0,0 +1,5 @@ +--- +title: TLS test page +--- + +# TLS test page diff --git a/docs/batch-changes/server-side.mdx b/docs/batch-changes/server-side.mdx index c301fa1d8..537b21f59 100644 --- a/docs/batch-changes/server-side.mdx +++ b/docs/batch-changes/server-side.mdx @@ -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 Running a batch spec server-side with file mounts is currently only diff --git a/src/data/redirects.ts b/src/data/redirects.ts index e480a4195..8a4e369ef 100644 --- a/src/data/redirects.ts +++ b/src/data/redirects.ts @@ -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' @@ -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 => {