Skip to content

Commit 92e841c

Browse files
authored
Merge pull request #35 from AdamG100/master
Update packages
2 parents 1b870eb + a8d8a12 commit 92e841c

File tree

7 files changed

+1718
-2642
lines changed

7 files changed

+1718
-2642
lines changed

docs/FAQ/windows-faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sidebar_label: Windows FAQ
1515

1616
**Q2.** How can I use a custom SSL certificate for the control panel website on Windows?
1717

18-
**A2.** To use a custom SSL certificate for the control panel website on Windows, follow these steps: [Use Custom SSL Certificate (Windows)](/customizations/web-server-configurations/setting-up-iis#use-custom-ssl-certificate-windows-optional)
18+
**A2.** To use a custom SSL certificate for the control panel website on Windows, follow these steps: [Use Custom SSL Certificate (Windows)](/customizations/web-server-configurations/setting-up-iis#option-2-use-a-custom-ssl-certificate-optional)
1919

2020
## Enable Web Console for Game Servers with Text Console
2121

docs/customizations/web-server-configurations/setting-up-iis.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ For automatic SSL management, Let's Encrypt is the recommended option. Certify T
190190
- Follow the on-screen instructions for installation.
191191
- For detailed documentation, visit [Certify The Web Documentation](https://docs.certifytheweb.com/).
192192

193-
### Option 2: Use a Custom SSL Certificate
193+
### Option 2: Use a Custom SSL Certificate (optional)
194194

195195
:::caution SSL Certificate Installation
196196
Ensure that the SSL certificate is correctly installed in Windows following the linked guide, as an incorrectly configured certificate can cause connection issues.

docs/customizations/web-server-configurations/setting-up-nginx.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ sudo apt install nginx
3434
```bash
3535
sudo systemctl status nginx
3636
```
37-
Yoiu should see:
37+
You should see:
3838
```
3939
● nginx.service - A high performance web server and a reverse proxy server
4040
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)

docs/getting-started/system-requirements.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ System requirements for optimal performance:
4747
| ---------------- | -------- | --------- | ----- |
4848
| Ubuntu | 16.04 | No | LTS End April 30th 2021 |
4949
| Ubuntu | 18.04 | No | LTS End May 31 2023 |
50-
| Ubuntu | 20.04 | Yes | LTS End Apr 2025 |
50+
| Ubuntu | 20.04 | No | LTS End May 31 2025 |
5151
| Ubuntu | 22.04 | Yes | LTS End April 2027 |
5252
| Debian | 9 | No | LTS End June 30 2022 |
53-
| Debian | 10 | Yes | LTS End June 30 2024 |
53+
| Debian | 10 | No | LTS End July 1 2022 |
5454
| Debian | 11 | Yes | LTS End June 2026 |
5555
| CentOS | 6 | No | LTS End November 30 2020 |
56-
| CentOS | 7 | Yes | LTS End June 30 2024 |
56+
| CentOS | 7 | No | LTS End June 30 2024 |
5757
| CentOS | 8 | No | LTS End December 31, 2021 (Moved to Centos stream) |
58-
| CentOS Stream | 8 | Yes | LTS End May 31 2024 |
58+
| CentOS Stream | 8 | No | LTS End May 31 2024 |
5959
| CentOS Stream | 9 | Yes | In Support |
6060

6161

docusaurus.config.js

Lines changed: 54 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,22 @@
11
// @ts-check
2-
// `@type` JSDoc annotations allow editor autocompletion and type checking
3-
// (when paired with `@ts-check`).
4-
// There are various equivalent ways to declare your Docusaurus config.
5-
// See: https://docusaurus.io/docs/api/docusaurus-config
6-
7-
import {themes as prismThemes} from 'prism-react-renderer';
2+
/** @type {import('@docusaurus/types').Config} */
3+
import { themes as prismThemes } from 'prism-react-renderer';
84

9-
const lightLogo = "img/tcadmin-logo.png";
10-
const darkLogo = "img/TCAdmin_White.png";
5+
const lightLogo = 'img/tcadmin-logo.png';
6+
const darkLogo = 'img/TCAdmin_White.png';
117

12-
/** @type {import('@docusaurus/types').Config} */
138
const config = {
149
title: 'TCAdmin Documentation',
1510
tagline: 'TCAdmin Documentation',
1611
favicon: 'img/cropped-tcadmin-favicon-32x32.png',
17-
18-
// Set the production url of your site here
1912
url: 'https://docs.tcadmin.com',
20-
// Set the /<baseUrl>/ pathname under which your site is served
21-
// For GitHub pages deployment, it is often '/<projectName>/'
2213
baseUrl: '/',
23-
24-
// GitHub pages deployment config.
25-
// If you aren't using GitHub pages, you don't need these.
26-
organizationName: 'TotalControlAdmin', // Usually your GitHub org/user name.
27-
projectName: 'tcadmin-docs', // Usually your repo name.
28-
14+
organizationName: 'TotalControlAdmin',
15+
projectName: 'tcadmin-docs',
2916
onBrokenLinks: 'throw',
3017
onBrokenMarkdownLinks: 'warn',
18+
onBrokenAnchors: 'ignore',
3119

32-
// Even if you don't use internationalization, you can use this field to set
33-
// useful metadata like html lang. For example, if your site is Chinese, you
34-
// may want to replace "en" with "zh-Hans".
3520
i18n: {
3621
defaultLocale: 'en',
3722
locales: ['en'],
@@ -40,102 +25,68 @@ const config = {
4025
presets: [
4126
[
4227
'classic',
43-
/** @type {import('@docusaurus/preset-classic').Options} */
44-
({
28+
{
4529
docs: {
46-
routeBasePath: "/",
30+
routeBasePath: '/',
4731
sidebarPath: './sidebars.js',
4832
showLastUpdateTime: true,
49-
// Please change this to your repo.
50-
// Remove this to remove the "edit this page" links.
51-
editUrl:
52-
'https://github.com/TotalControlAdmin/tcadmin-docs/blob/master/',
33+
editUrl: 'https://github.com/TotalControlAdmin/tcadmin-docs/blob/master/',
5334
},
5435
blog: false,
5536
theme: {
5637
customCss: './src/css/custom.css',
5738
},
58-
}),
39+
},
5940
],
6041
],
61-
42+
6243
themes: ['docusaurus-theme-search-typesense'],
63-
themeConfig:
64-
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
65-
({
66-
// Replace with your project's social card
67-
image: 'img/tcadmin-logo.png',
68-
typesense: {
69-
// Replace this with the name of your index/collection.
70-
// It should match the "index_name" entry in the scraper's "config.json" file.
71-
typesenseCollectionName: "tcadmin-docs",
72-
73-
typesenseServerConfig: {
74-
nodes: [
75-
{
76-
host: "typesense.tcadmin.k8s.ovh.alexr03.dev",
77-
port: 443,
78-
protocol: "https",
79-
},
80-
],
81-
apiKey: "fzpKd6Esfg47mr8Nh9f4Km1Kbbi1OiFM",
82-
},
83-
84-
// Optional: Typesense search parameters: https://typesense.org/docs/0.24.0/api/search.html#search-parameters
85-
typesenseSearchParameters: {},
86-
87-
// Optional
88-
contextualSearch: true,
89-
},
90-
navbar: {
91-
title: '',
92-
logo: {
93-
alt: "TCAdmin Docs",
94-
src: lightLogo,
95-
srcDark: darkLogo,
96-
},
97-
items: [
98-
{
99-
href: "https://github.com/TotalControlAdmin/tcadmin-docs",
100-
label: "GitHub",
101-
position: "right",
102-
},
103-
{
104-
href: "https://discord.gg/ptN2pGf",
105-
label: "Discord",
106-
position: "right",
107-
},
108-
{
109-
href: "https://community.tcadmin.com",
110-
label: "Forums",
111-
position: "right",
112-
},
113-
{
114-
href: "https://www.tcadmin.com/",
115-
label: "Main Website",
116-
position: "right",
117-
},
44+
45+
themeConfig: {
46+
image: 'img/tcadmin-logo.png',
47+
typesense: {
48+
typesenseCollectionName: 'tcadmin-docs',
49+
typesenseServerConfig: {
50+
nodes: [
11851
{
119-
href: "https://clients.tcadmin.com/billing/clientarea.php",
120-
label: "Billing",
121-
position: "right",
52+
host: 'typesense.tcadmin.k8s.ovh.alexr03.dev',
53+
port: 443,
54+
protocol: 'https',
12255
},
12356
],
57+
apiKey: 'fzpKd6Esfg47mr8Nh9f4Km1Kbbi1OiFM',
12458
},
125-
footer: {
126-
style: "dark",
127-
links: [],
128-
copyright: `Copyright © ${new Date().getFullYear()} TCAdmin Built with Docusaurus.`,
129-
},
130-
prism: {
131-
theme: prismThemes.github,
132-
darkTheme: prismThemes.dracula,
133-
additionalLanguages: ['php', 'cshtml', 'csharp'],
59+
contextualSearch: true,
60+
},
61+
navbar: {
62+
title: '',
63+
logo: {
64+
alt: 'TCAdmin Docs',
65+
src: lightLogo,
66+
srcDark: darkLogo,
13467
},
135-
colorMode: {
136-
respectPrefersColorScheme: true,
137-
},
138-
}),
68+
items: [
69+
{ href: 'https://github.com/TotalControlAdmin/tcadmin-docs', label: 'GitHub', position: 'right' },
70+
{ href: 'https://discord.gg/ptN2pGf', label: 'Discord', position: 'right' },
71+
{ href: 'https://community.tcadmin.com', label: 'Forums', position: 'right' },
72+
{ href: 'https://www.tcadmin.com/', label: 'Main Website', position: 'right' },
73+
{ href: 'https://clients.tcadmin.com/billing/clientarea.php', label: 'Billing', position: 'right' },
74+
],
75+
},
76+
footer: {
77+
style: 'dark',
78+
links: [],
79+
copyright: `Copyright © ${new Date().getFullYear()} TCAdmin. Built with Docusaurus.`,
80+
},
81+
prism: {
82+
theme: prismThemes.github,
83+
darkTheme: prismThemes.dracula,
84+
additionalLanguages: ['php', 'cshtml', 'csharp'],
85+
},
86+
colorMode: {
87+
respectPrefersColorScheme: true,
88+
},
89+
},
13990
};
14091

141-
export default config;
92+
export default config;

0 commit comments

Comments
 (0)