features.ts 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 (<a href='https://www.php.net/supported-versions.php'>EOL</a>)" },
  24. { text: "PHP 8.0" },
  25. { text: "PHP 8.1" },
  26. { text: "PHP 8.2" },
  27. ],
  28. },
  29. {
  30. text: "One-Click Install Apps",
  31. items: [
  32. { text: "WordPress" },
  33. { text: "Dokuwiki" },
  34. { text: "Drupal" },
  35. { text: "Grav" },
  36. { text: "Laravel" },
  37. { text: "MediaWiki" },
  38. { text: "NextCloud" },
  39. { text: "OpenCart" },
  40. { text: "Prestashop" },
  41. { text: "Symphony" },
  42. ],
  43. },
  44. ];
  45. export const mail: FeatureListItem[] = [
  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 Rainloop installation" },
  54. ];
  55. export const dns: FeatureListItem[] = [
  56. { text: "Create your own nameservers" },
  57. { text: "Easy DNS cluster setup" },
  58. { text: "Support for DNSSEC on domains" },
  59. ];
  60. export const databases: FeatureListItem[] = [
  61. { text: "Support for MariaDB 10.2 -> 10.11 with 10.11 as default" },
  62. { text: "Support for MySQL 8" },
  63. { text: "Support for PostgreSQL" },
  64. { text: "Latest version of phpMyAdmin and phpPgAdmin" },
  65. ];
  66. export const serverAdmin: FeatureListItem[] = [
  67. {
  68. text: "Automated backups to SFTP, FTP and via Rclone with 50+ <a href='https://rclone.org/overview/'>Cloud storage providers</a>",
  69. },
  70. ];