Skip to content

Commit 68216e6

Browse files
jaapmarcusimjuniperneto737
authored
Update features list (hestiacp#3316)
* Update features list Probally should add some more info * Include /.vitepress/cache in .gitignore * Update text slightly * Include in "Import" * Update docs/_data/features.ts Co-authored-by: Jakob Bouchard <jakob@jakobbouchard.dev> * Update docs/_data/features.ts Co-authored-by: Neto <tynhomello@gmail.com> * Update docs/_data/features.ts Co-authored-by: Jakob Bouchard <jakob@jakobbouchard.dev> * Update colors abit * Update supported versions MariaDB 11.0 still has some minor "warnings" * Fix indents --------- Co-authored-by: Jakob Bouchard <jakob@jakobbouchard.dev> Co-authored-by: Neto <tynhomello@gmail.com>
1 parent 533c0db commit 68216e6

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ web/src/vendor/composer/installed.json
3535

3636
# vitepress build output
3737
**/.vitepress/dist/
38-
38+
**/.vitepress/cache/
3939
# Node
4040
**/node_modules/
4141
npm-debug.log

docs/_data/features.ts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ export const webDomains: FeatureListItem[] = [
2222
{ text: "PHP 7.1 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
2323
{ text: "PHP 7.2 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
2424
{ text: "PHP 7.3 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
25-
{ text: "PHP 7.4" },
25+
{ text: "PHP 7.4 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
2626
{ text: "PHP 8.0" },
2727
{ text: "PHP 8.1" },
28+
{ text: "PHP 8.2" },
2829
],
2930
},
3031
{
@@ -55,12 +56,21 @@ export const mail: FeatureListItem[] = [
5556
{ text: "Optional Rainloop installation" },
5657
];
5758

59+
export const dns: FeatureListItem[] = [
60+
{ text: "Create your own nameservers" },
61+
{ text: "Easy DNS cluster setup" },
62+
{ text: "Support for DNSSEC on domains" },
63+
];
64+
5865
export const databases: FeatureListItem[] = [
59-
{ text: "Support for MariaDB 10.2 -> 10.8 with 10.6 as default" },
66+
{ text: "Support for MariaDB 10.2 -> 10.11 with 10.11 as default" },
67+
{ text: "Support for MySQL 8" },
6068
{ text: "Support for PostgreSQL" },
61-
{ text: "Latest version of phpMyAdmin" },
69+
{ text: "Latest version of phpMyAdmin and phpPgAdmin" },
6270
];
6371

6472
export const serverAdmin: FeatureListItem[] = [
65-
{ text: "Automated backups to SFTP, FTP or Backblaze B2" },
73+
{
74+
text: "Automated backups to SFTP, FTP and via Rclone with 50+ <a href='https://rclone.org/overview/'>Cloud storage providers</a>",
75+
},
6676
];

docs/features.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Features
77
import FeaturePageTitle from "./.vitepress/theme/components/FeaturePageTitle.vue";
88
import FeaturePageSection from "./.vitepress/theme/components/FeaturePageSection.vue";
99
import FeatureList from "./.vitepress/theme/components/FeatureList.vue";
10-
import { users, webDomains, mail, databases, serverAdmin } from "./_data/features";
10+
import { users, webDomains, mail, dns, databases, serverAdmin } from "./_data/features";
1111
</script>
1212

1313
<FeaturePage>
@@ -28,6 +28,13 @@ title: Features
2828
<FeatureList :items="webDomains"></FeatureList>
2929
</template>
3030
</FeaturePageSection>
31+
<FeaturePageSection image="/images/undraw_domain_names_re_0uun.svg">
32+
<template #title>DNS</template>
33+
<template #lead>Manage your own DNS server!</template>
34+
<template #list>
35+
<FeatureList :items="dns"></FeatureList>
36+
</template>
37+
</FeaturePageSection>
3138
<FeaturePageSection image="/images/undraw_personal_email_re_4lx7.svg">
3239
<template #title>Mail</template>
3340
<template #lead>Host your own emails, no need to pay a business mail provider!</template>
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)