features.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. export interface FeatureListItem {
  2. text: string;
  3. items?: { text: string }[];
  4. }
  5. export const users: FeatureListItem[] = [
  6. { text: "Support for SFTP chroot jails" },
  7. { text: "Two-Factor Authentication support for the Admin Panel" },
  8. { text: "SSH keys for login via SFTP and SSH" },
  9. ];
  10. export const webDomains: FeatureListItem[] = [
  11. { text: "Nginx FastCGI cache support for Nginx + PHP-FPM" },
  12. { text: "Nginx Proxy cache support for Nginx + Apache2" },
  13. { text: "Per-domain TLS certificates for web domains" },
  14. { text: "MultiIP support for Web/Mail/DNS" },
  15. {
  16. text: "MultiPHP support for",
  17. items: [
  18. { text: "PHP 5.6 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  19. { text: "PHP 7.0 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  20. { text: "PHP 7.1 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  21. { text: "PHP 7.2 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  22. { text: "PHP 7.3 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  23. { text: "PHP 7.4" },
  24. { text: "PHP 8.0" },
  25. { text: "PHP 8.1" },
  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. export const mail: FeatureListItem[] = [
  45. {
  46. text: "Per-domain TLS certificates for inbound and outbound mail services (Exim 4, Dovecot, Webmail)",
  47. },
  48. { text: "SMTP relay setup for Exim in case port 25 is blocked by the provider" },
  49. { text: "Rate limit adjustable per user or email account" },
  50. { text: "Let’s Encrypt support for mail domains" },
  51. { text: "Latest version of Roundcube" },
  52. { text: "Optional Rainloop installation" },
  53. ];
  54. export const databases: FeatureListItem[] = [
  55. { text: "Support for MariaDB 10.2 -> 10.8 with 10.6 as default" },
  56. { text: "Support for PostgreSQL" },
  57. { text: "Latest version of phpMyAdmin" },
  58. ];
  59. export const serverAdmin: FeatureListItem[] = [
  60. { text: "Automated backups to SFTP, FTP or Backblaze B2" },
  61. ];