-
-
Notifications
You must be signed in to change notification settings - Fork 401
/
Copy pathredirects.ts
113 lines (112 loc) · 3.26 KB
/
redirects.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import * as ClientRedirects from '@docusaurus/plugin-client-redirects';
const redirects: ClientRedirects.Options['redirects'] = [
// These pages existed on the jellyfin-blog site, but were not fully configured
{
from: ['/categories', '/tags'],
to: '/posts'
},
// Jellyfin 10.8 and below linked to this subtitle docs page
{
from: ['/docs/general/server/media/subtitles', '/docs/general/server/media/subtitles.html'],
to: '/docs/general/server/media/external-files'
},
// Storage docs moved from the server guide to administrative docs
{
from: '/docs/general/server/storage',
to: '/docs/general/administration/storage'
},
// Unified client + server download pages
{
from: '/clients',
to: '/downloads/clients/'
},
{
from: '/clients/all',
to: '/downloads/clients/all'
},
// New installation documentation
{
from: '/docs/general/administration/installing',
to: '/docs/general/installation/'
},
{
from: [
'/docs/general/administration/install/synology',
// synology moved
'/docs/general/installation/synology'
],
to: '/docs/general/installation/advanced/synology'
},
// installing from source moved
{
from: ['/docs/general/installation/source', '/docs/general/administration/building'],
to: '/docs/general/installation/advanced/source'
},
// "traefik2" moved
{
from: ['/docs/general/networking/traefik2', '/docs/general/networking/traefik'],
to: '/docs/general/post-install/networking/advanced/traefik'
},
// Internet radio moved to live tv
{
from: '/docs/general/server/media/internet-radio',
to: '/docs/general/server/live-tv/internet-radio'
},
// Merge comic and books
{
from: '/docs/general/server/media/comics',
to: '/docs/general/server/media/books'
},
// transcoding and hwa moved
{
from: '/docs/general/administration/hardware-acceleration',
to: '/docs/general/post-install/transcoding/hardware-acceleration/'
},
{
from: '/docs/general/server/transcoding',
to: '/docs/general/post-install/transcoding/'
},
// networking moved
{
from: '/docs/general/networking/',
to: '/docs/general/post-install/networking/'
},
{
from: '/docs/general/networking/apache',
to: '/docs/general/post-install/networking/advanced/apache'
},
{
from: '/docs/general/networking/caddy',
to: '/docs/general/post-install/networking/caddy'
},
{
from: '/docs/general/networking/dlna',
to: '/docs/general/post-install/networking/dlna'
},
{
from: '/docs/general/networking/fail2ban',
to: '/docs/general/post-install/networking/advanced/fail2ban'
},
{
from: '/docs/general/networking/haproxy',
to: '/docs/general/post-install/networking/advanced/haproxy'
},
{
from: '/docs/general/networking/letsencrypt',
to: '/docs/general/post-install/networking/advanced/letsencrypt'
},
{
from: '/docs/general/networking/monitoring',
to: '/docs/general/post-install/networking/advanced/monitoring'
},
{
from: '/docs/general/networking/nginx',
to: '/docs/general/post-install/networking/advanced/nginx'
},
// quick start replaced with post install
{
from: '/docs/general/quick-start',
to: '/docs/general/post-install/setup-wizard'
}
];
export default redirects;