mirror of
https://github.com/EasyTier/easytier.github.io.git
synced 2025-05-19 10:27:06 +00:00
55 lines
2.5 KiB
TypeScript
55 lines
2.5 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export const en = defineConfig({
|
|
lang: 'en',
|
|
description: 'A simple, safe and decentralized SD-WAN networking solution implemented with the Rust language and Tokio framework',
|
|
|
|
themeConfig: {
|
|
sidebar: [
|
|
{
|
|
text: 'Getting started',
|
|
items: [
|
|
{ text: 'Introduction', link: '/en/guide/introduction' },
|
|
{ text: 'Installation', link: '/en/guide/installation' },
|
|
],
|
|
},
|
|
{
|
|
text: 'Networking',
|
|
link: '/en/guide/networking',
|
|
items: [
|
|
{ text: 'Peer to Peer Networking', link: '/en/guide/network/two-node-networking' },
|
|
{ text: 'Multi Peers Networking', link: '/en/guide/network/multi-node-networking' },
|
|
{ text: 'Subnet Proxy', link: '/en/guide/network/point-to-networking' },
|
|
{ text: 'Network to Network', link: '/en/guide/network/network-to-network' },
|
|
{ text: 'Without Public IP', link: '/en/guide/network/networking-without-public-ip' },
|
|
{ text: 'Use WireGuard Client', link: '/en/guide/network/use-easytier-with-wireguard-client' },
|
|
{ text: 'SOCKS5', link: '/en/guide/network/socks5' },
|
|
{ text: 'Rootless mode (no TUN)', link: '/en/guide/network/no-root' },
|
|
{ text: 'Self-hosted Public Server', link: '/en/guide/network/host-public-server' },
|
|
{ text: 'Installing as a Windows Service (Auto start on boot)', link: '/en/guide/network/install-as-a-windows-service' },
|
|
{ text: 'Installing as a Linux Systemd Service', link: '/en/guide/network/install-as-a-systemd-service' },
|
|
{ text: 'Installing as a macOS Service', link: '/en/guide/network/install-as-a-macos-service' },
|
|
{ text: 'Other Configurations', link: '/en/guide/network/configurations' },
|
|
{ text: 'Configuration File', link: '/en/guide/network/config-file' },
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{ text: 'Roadmap', link: '/en/guide/roadmap' },
|
|
{ text: 'Community and Contribution', link: '/en/guide/community-and-contribution' },
|
|
{ text: 'License', link: '/en/guide/license' },
|
|
{ text: 'Contact', link: '/en/guide/contact' },
|
|
],
|
|
},
|
|
],
|
|
footer: {
|
|
message: 'Released under the Apache License 2.0.',
|
|
copyright: 'Copyright © 2024-present EasyTier',
|
|
},
|
|
editLink: {
|
|
pattern: 'https://github.com/EasyTier/easytier.github.io/main/dev/:path',
|
|
text: 'Edit this page on GitHub',
|
|
},
|
|
},
|
|
})
|