features.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. { text: 'Support for PHP version 5.6 up to 8.2 with PHP8.2 as default' },
  15. {
  16. text: 'One-Click Install Apps',
  17. items: [
  18. { text: 'WordPress' },
  19. { text: 'Dokuwiki' },
  20. { text: 'Drupal' },
  21. { text: 'Grav' },
  22. { text: 'Laravel' },
  23. { text: 'MediaWiki' },
  24. { text: 'NextCloud' },
  25. { text: 'OpenCart' },
  26. { text: 'Prestashop' },
  27. { text: 'Symphony' },
  28. ],
  29. },
  30. ];
  31. /** @type {FeatureListItem[]} */
  32. export const mail = [
  33. {
  34. text: 'Per-domain TLS certificates for inbound and outbound mail services (Exim 4, Dovecot, Webmail)',
  35. },
  36. { text: 'SMTP relay setup for Exim in case port 25 is blocked by the provider' },
  37. { text: 'Rate limit adjustable per user or email account' },
  38. { text: 'Let’s Encrypt support for mail domains' },
  39. { text: 'Latest version of Roundcube' },
  40. { text: 'Optional SnappyMail installation' },
  41. ];
  42. /** @type {FeatureListItem[]} */
  43. export const dns = [
  44. { text: 'Create your own nameservers' },
  45. { text: 'Easy DNS cluster setup' },
  46. { text: 'Support for DNSSEC on domains' },
  47. ];
  48. /** @type {FeatureListItem[]} */
  49. export const databases = [
  50. { text: 'Support for MariaDB 10.2 -> 10.11 with 10.11 as default' },
  51. { text: 'Support for MySQL 8' },
  52. { text: 'Support for PostgreSQL' },
  53. { text: 'Latest version of phpMyAdmin and phpPgAdmin' },
  54. ];
  55. /** @type {FeatureListItem[]} */
  56. export const serverAdmin = [
  57. {
  58. text: "Automated backups to SFTP, FTP and via Rclone with 50+ <a href='https://rclone.org/overview/'>Cloud storage providers</a>",
  59. },
  60. ];