features.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /** @typedef {{ text: string, items?: { text: string }[] }} FeatureListItem */
  2. /** @type {FeatureListItem[]} */
  3. export const users = [
  4. { text: 'Support for SFTP chroot jails' },
  5. { text: 'Two-Factor Authentication support for the Admin Panel' },
  6. { text: 'SSH keys for login via SFTP and SSH' },
  7. ];
  8. /** @type {FeatureListItem[]} */
  9. export const webDomains = [
  10. { text: 'Nginx FastCGI cache support for Nginx + PHP-FPM' },
  11. { text: 'Nginx Proxy cache support for Nginx + Apache2' },
  12. { text: 'Per-domain TLS certificates for web domains' },
  13. { text: 'MultiIP support for Web/Mail/DNS' },
  14. {
  15. text: 'MultiPHP support for',
  16. items: [
  17. { text: "PHP 5.6 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  18. { text: "PHP 7.0 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  19. { text: "PHP 7.1 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  20. { text: "PHP 7.2 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  21. { text: "PHP 7.3 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  22. { text: "PHP 7.4 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  23. { text: 'PHP 8.0' },
  24. { text: 'PHP 8.1' },
  25. { text: 'PHP 8.2' },
  26. ],
  27. },
  28. {
  29. text: 'One-Click Install Apps',
  30. items: [
  31. { text: 'WordPress' },
  32. { text: 'Dokuwiki' },
  33. { text: 'Drupal' },
  34. { text: 'Grav' },
  35. { text: 'Laravel' },
  36. { text: 'MediaWiki' },
  37. { text: 'NextCloud' },
  38. { text: 'OpenCart' },
  39. { text: 'Prestashop' },
  40. { text: 'Symphony' },
  41. ],
  42. },
  43. ];
  44. /** @type {FeatureListItem[]} */
  45. export const mail = [
  46. {
  47. text: 'Per-domain TLS certificates for inbound and outbound mail services (Exim 4, Dovecot, Webmail)',
  48. },
  49. { text: 'SMTP relay setup for Exim in case port 25 is blocked by the provider' },
  50. { text: 'Rate limit adjustable per user or email account' },
  51. { text: 'Let’s Encrypt support for mail domains' },
  52. { text: 'Latest version of Roundcube' },
  53. { text: 'Optional SnappyMail installation' },
  54. ];
  55. /** @type {FeatureListItem[]} */
  56. export const dns = [
  57. { text: 'Create your own nameservers' },
  58. { text: 'Easy DNS cluster setup' },
  59. { text: 'Support for DNSSEC on domains' },
  60. ];
  61. /** @type {FeatureListItem[]} */
  62. export const databases = [
  63. { text: 'Support for MariaDB 10.2 -> 10.11 with 10.11 as default' },
  64. { text: 'Support for MySQL 8' },
  65. { text: 'Support for PostgreSQL' },
  66. { text: 'Latest version of phpMyAdmin and phpPgAdmin' },
  67. ];
  68. /** @type {FeatureListItem[]} */
  69. export const serverAdmin = [
  70. {
  71. text: "Automated backups to SFTP, FTP and via Rclone with 50+ <a href='https://rclone.org/overview/'>Cloud storage providers</a>",
  72. },
  73. ];