{"id":9859,"date":"2024-12-18T23:48:59","date_gmt":"2024-12-18T23:48:59","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=9859"},"modified":"2024-12-18T23:49:00","modified_gmt":"2024-12-18T23:49:00","slug":"how-to-setup-horde-webmail-with-apache-or-nginx","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/","title":{"rendered":"How to setup Horde Webmail with Apache or Nginx"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en.jpg\" alt=\"Setup Horde Webmail Apache or Nginx ubuntu almalinux centos redhat\" class=\"wp-image-9883\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Horde Webmail is a robust, open-source web-based email application used for managing emails, calendars, tasks, and contacts. Installing and configuring Horde with Apache or Nginx allows users to take full advantage of its features in a self-hosted environment. Whether you&#8217;re a system administrator or a curious enthusiast, this tutorial will guide you through setting up Horde Webmail step by step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Horde Webmail is designed to handle multiple users, integrate seamlessly with existing email protocols, and provide a user-friendly web interface. This guide assumes a clean Linux server installation (e.g., Ubuntu or CentOS) and walks you through the installation process for Apache and Nginx configurations. By the end, you&#8217;ll have a functional Horde Webmail interface running securely on your server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"prerequisites\"><strong>Prerequisites<\/strong><\/h3>\n\n\n\n<p>Before starting, ensure you have:<\/p>\n\n\n\n<ul>\n<li>A Linux server (Ubuntu 20.04+ or CentOS 8+) with root access.<\/li>\n\n\n\n<li>PHP (7.4 or later) and necessary extensions.<\/li>\n\n\n\n<li>A fully qualified domain name (FQDN) pointing to your server.<\/li>\n\n\n\n<li>MariaDB\/MySQL database for Horde.<\/li>\n\n\n\n<li>Mail server like Postfix\/Dovecot (already configured).<\/li>\n\n\n\n<li>SSH access to the server.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing-required-dependencies\"><strong>Installing Required Dependencies<\/strong><\/h2>\n\n\n\n<p>Horde requires PHP, a database, and a web server. We&#8217;ll start by installing these components.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"update-the-system\"><strong>Update the System<\/strong><\/h3>\n\n\n\n<p>Ensure your server packages are up-to-date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update &amp;&amp; sudo apt upgrade -y  <em># Ubuntu\/Debian<\/em>\n$ sudo yum update -y                      <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-install-php-and-extensions\"><strong>Step 1: Install PHP and Extensions<\/strong><\/h2>\n\n\n\n<p>Horde requires several PHP extensions. Install them as follows:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"on-ubuntudebian\"><strong>On Ubuntu\/Debian<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install php php-cli php-mysql php-imap php-curl php-xml php-mbstring php-pear php-zip php-intl php-gd php-bz2 -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"on-centosrhel\"><strong>On CentOS\/RHEL<\/strong><\/h3>\n\n\n\n<p>Enable EPEL and Remi repositories for the latest PHP:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install epel-release -y\n$ sudo yum install https:\/\/rpms.remirepo.net\/enterprise\/remi-release-8.rpm -y\n$ sudo yum module reset php -y\n$ sudo yum module enable php:remi-7.4 -y\n$ sudo yum install php php-cli php-mysqlnd php-imap php-curl php-xml php-mbstring php-pear php-zip php-intl php-gd php-bz2 -y<\/code><\/pre>\n\n\n\n<p>Check PHP version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ php -v<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-install-and-configure-database\"><strong>Step 2: Install and Configure Database<\/strong><\/h2>\n\n\n\n<p>Horde supports MariaDB or MySQL. Use the following steps for MariaDB installation:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-mariadb\"><strong>Install MariaDB<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install mariadb-server -y   <em># Ubuntu\/Debian<\/em>\n$ sudo yum install mariadb-server -y  <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"secure-mariadb-installation\"><strong>Secure MariaDB Installation<\/strong><\/h3>\n\n\n\n<p>Run the security script to remove default settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"create-a-database-for-horde\"><strong>Create a Database for Horde<\/strong><\/h3>\n\n\n\n<p>Log into MariaDB and create a new database and user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Inside the MariaDB shell, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE DATABASE horde_db;\nCREATE USER 'horde_user'@'localhost' IDENTIFIED BY 'secure_password';\nGRANT ALL PRIVILEGES ON horde_db.* TO 'horde_user'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-install-apache-or-nginx\"><strong>Step 3: Install Apache or Nginx<\/strong><\/h2>\n\n\n\n<p>Horde can be hosted on either Apache or Nginx. Follow the relevant section for your preferred web server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"option-a-configure-apache-for-horde\"><strong>Option A: Configure Apache for Horde<\/strong><\/h3>\n\n\n\n<p>Install Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install apache2 libapache2-mod-php -y    <em># Ubuntu\/Debian<\/em>\n$ sudo yum install httpd -y                        <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<p>Enable and start Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl enable apache2 &amp;&amp; sudo systemctl start apache2  <em># Ubuntu\/Debian<\/em>\n$ sudo systemctl enable httpd &amp;&amp; sudo systemctl start httpd      <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"create-apache-virtual-host-for-horde\"><strong>Create Apache Virtual Host for Horde<\/strong><\/h4>\n\n\n\n<p>Create a new configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/apache2\/sites-available\/horde.conf  <em># Ubuntu\/Debian<\/em>\n$ sudo nano \/etc\/httpd\/conf.d\/horde.conf            <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"apacheconf\" class=\"language-apacheconf\"><strong>&lt;VirtualHost *:80&gt;<\/strong>\n    ServerName webmail.example.com\n    DocumentRoot \/var\/www\/horde\n\n    <strong>&lt;Directory \/var\/www\/horde&gt;<\/strong>\n        AllowOverride All\n        Require all granted\n    <strong>&lt;\/Directory&gt;<\/strong>\n\n    ErrorLog ${APACHE_LOG_DIR}\/horde_error.log\n    CustomLog ${APACHE_LOG_DIR}\/horde_access.log combined\n<strong>&lt;\/VirtualHost&gt;<\/strong><\/code><\/pre>\n\n\n\n<p>Enable the configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2ensite horde.conf    <em># Ubuntu\/Debian<\/em>\n$ sudo systemctl reload apache2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"option-b-configure-nginx-for-horde\"><strong>Option B: Configure Nginx for Horde<\/strong><\/h3>\n\n\n\n<p>Install Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install nginx -y    <em># Ubuntu\/Debian<\/em>\n$ sudo yum install nginx -y    <em># CentOS\/RHEL<\/em><\/code><\/pre>\n\n\n\n<p>Enable and start Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl enable nginx &amp;&amp; sudo systemctl start nginx<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"create-nginx-configuration-for-horde\"><strong>Create Nginx Configuration for Horde<\/strong><\/h4>\n\n\n\n<p>Edit the configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/nginx\/conf.d\/horde.conf<\/code><\/pre>\n\n\n\n<p>Add the following content:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"nginx\" class=\"language-nginx\"><strong>server<\/strong> {\n    listen 80;\n    server_name webmail.example.com;\n\n    root \/var\/www\/horde;\n    index index.php;\n\n    <strong>location<\/strong> \/ {\n        try_files $uri \/index.php;\n    }\n\n    <strong>location<\/strong> ~ \\.php$ {\n        include fastcgi_params;\n        fastcgi_pass unix:\/var\/run\/php\/php7.4-fpm.sock; <em># Adjust PHP version if needed<\/em>\n        fastcgi_index index.php;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n    }\n}<\/code><\/pre>\n\n\n\n<p>Test and reload Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nginx -t\n$ sudo systemctl reload nginx<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-download-and-install-horde\"><strong>Step 4: Download and Install Horde<\/strong><\/h2>\n\n\n\n<p>Download the Horde Groupware Webmail Edition:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ cd \/var\/www\n$ sudo git clone https:\/\/github.com\/horde\/horde.git\n$ sudo chown -R www-data:www-data \/var\/www\/horde    <em># Apache<\/em>\n$ sudo chown -R nginx:nginx \/var\/www\/horde          <em># Nginx<\/em><\/code><\/pre>\n\n\n\n<p>Set appropriate permissions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo chmod -R 755 \/var\/www\/horde<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-configure-horde\"><strong>Step 5: Configure Horde<\/strong><\/h2>\n\n\n\n<p>Access the web installer via&nbsp;<code>http:\/\/webmail.example.com<\/code>. Follow the on-screen instructions:<\/p>\n\n\n\n<ul>\n<li>Enter the database details you configured earlier.<\/li>\n\n\n\n<li>Configure the mail server settings (e.g., IMAP, SMTP).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-secure-horde-with-ssl\"><strong>Step 6: Secure Horde with SSL<\/strong><\/h2>\n\n\n\n<p>Install Let&#8217;s Encrypt for a free SSL certificate.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-certbot\"><strong>Install Certbot<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install certbot python3-certbot-apache -y    <em># Apache<\/em>\n$ sudo apt install certbot python3-certbot-nginx -y     <em># Nginx<\/em><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"obtain-ssl-certificate\"><strong>Obtain SSL Certificate<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo certbot --apache -d webmail.example.com          <em># Apache<\/em>\n$ sudo certbot --nginx -d webmail.example.com           <em># Nginx<\/em><\/code><\/pre>\n\n\n\n<p>Verify HTTPS:<br>Visit&nbsp;<code>https:\/\/webmail.example.com<\/code>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"faqs\"><strong>FAQs<\/strong><\/h2>\n\n\n\n<p>How can I troubleshoot Horde installation issues?<\/p>\n\n\n\n<ul>\n<li>Check the server logs (<code>\/var\/log\/apache2\/error.log<\/code>&nbsp;or&nbsp;<code>\/var\/log\/nginx\/error.log<\/code>).<\/li>\n\n\n\n<li>Ensure PHP and database configurations are correct.<\/li>\n<\/ul>\n\n\n\n<p>Can I use another database type for Horde?<br>Yes, Horde supports PostgreSQL and SQLite in addition to MySQL\/MariaDB.<\/p>\n\n\n\n<p>What mail servers are compatible with Horde?<br>Horde works with IMAP\/SMTP-compatible mail servers like Postfix, Dovecot, and Exim.<\/p>\n\n\n\n<p>How do I reset the Horde admin password?<br>Access the database and update the admin account directly.<\/p>\n\n\n\n<p>Can I customize the Horde interface?<br>Yes, Horde allows theme and module customizations.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Setting up Horde Webmail with Apache or Nginx provides a powerful, self-hosted email solution. Following this tutorial ensures a secure and efficient setup. Enjoy managing your emails, contacts, and tasks with the feature-rich Horde platform.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Horde Webmail is a robust, open-source web-based email application used for managing emails, calendars, tasks, and contacts. Installing and configuring Horde with Apache or Nginx allows users to take full advantage of its features in a self-hosted environment. Whether you&#8217;re a system administrator or a curious enthusiast, this tutorial will guide you through setting up ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[277,4],"tags":[],"yoast_head":"\n<title>How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-18T23:48:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-18T23:49:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to setup Horde Webmail with Apache or Nginx\",\"datePublished\":\"2024-12-18T23:48:59+00:00\",\"dateModified\":\"2024-12-18T23:49:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\"},\"wordCount\":560,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Mail Servers\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\",\"name\":\"How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-12-18T23:48:59+00:00\",\"dateModified\":\"2024-12-18T23:49:00+00:00\",\"description\":\"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup Horde Webmail with Apache or Nginx\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","description":"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/","og_locale":"en_US","og_type":"article","og_title":"How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","og_description":"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-12-18T23:48:59+00:00","article_modified_time":"2024-12-18T23:49:00+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/horde_mail_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to setup Horde Webmail with Apache or Nginx","datePublished":"2024-12-18T23:48:59+00:00","dateModified":"2024-12-18T23:49:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/"},"wordCount":560,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Mail Servers","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/","name":"How to setup Horde Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-12-18T23:48:59+00:00","dateModified":"2024-12-18T23:49:00+00:00","description":"Learn how to set up Horde webmail with Apache or Nginx, including step-by-step commands, configurations, and troubleshooting.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-horde-webmail-with-apache-or-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to setup Horde Webmail with Apache or Nginx"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/9859"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=9859"}],"version-history":[{"count":5,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/9859\/revisions"}],"predecessor-version":[{"id":9893,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/9859\/revisions\/9893"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=9859"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=9859"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=9859"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}