{"id":9732,"date":"2024-11-23T10:16:21","date_gmt":"2024-11-23T10:16:21","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=9732"},"modified":"2024-11-23T10:16:23","modified_gmt":"2024-11-23T10:16:23","slug":"how-to-setup-roundcube-webmail-apache-nginx","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/","title":{"rendered":"How to Setup Roundcube 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\/11\/roundcube_apache_nginx_en.jpg\" alt=\"Setup Roundcube Webmail with Apache Nginx Webmail Configuration\" class=\"wp-image-9750\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Managing email effectively is crucial for businesses and individuals. <strong>Roundcube Webmail<\/strong> is a popular, open-source webmail client that provides an intuitive interface for email management. Whether you are using Apache or Nginx as your web server, this guide will walk you through the complete setup process. Follow this step-by-step tutorial to get started, even if you&#8217;re a beginner.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-roundcube-webmail\"><strong>What is Roundcube Webmail?<\/strong><\/h2>\n\n\n\n<p>Roundcube Webmail is an IMAP-based, open-source webmail client written in PHP. It provides a user-friendly interface similar to desktop email clients, making it an excellent option for those who prefer managing emails through a browser. Key features include:<\/p>\n\n\n\n<ul>\n<li>Email management (read, send, reply, forward, and organize emails).<\/li>\n\n\n\n<li>Address book integration.<\/li>\n\n\n\n<li>Support for plugins to extend functionality.<\/li>\n\n\n\n<li>Mobile-friendly design.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites-for-roundcube-webmail-setup\"><strong>Prerequisites for Roundcube Webmail Setup<\/strong><\/h2>\n\n\n\n<p>Before diving into the installation process, ensure you have the following:<\/p>\n\n\n\n<ul>\n<li>A Linux server (Ubuntu 20.04 or newer recommended).<\/li>\n\n\n\n<li>Apache or Nginx installed.<\/li>\n\n\n\n<li>PHP version 7.4 or higher.<\/li>\n\n\n\n<li>MariaDB or MySQL database server.<\/li>\n\n\n\n<li>Access to DNS records for your domain.<\/li>\n<\/ul>\n\n\n\n<p>Let\u2019s get started with the installation and configuration process!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-update-and-upgrade-your-server\"><strong>Step 1: Update and Upgrade Your Server<\/strong><\/h2>\n\n\n\n<p>It\u2019s essential to start by ensuring your server is updated. Run the following commands to update your package manager and upgrade installed packages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update  \n$ sudo apt upgrade -y  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-install-required-dependencies\"><strong>Step 2: Install Required Dependencies<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"for-both-apache-and-nginx-install-php-and-required-modules\">For both Apache and Nginx, install PHP and required modules:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install php php-cli php-mbstring php-xml php-mysql php-curl php-zip unzip -y  <\/code><\/pre>\n\n\n\n<p>You\u2019ll also need composer for dependency management:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install composer -y  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\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<h3 class=\"wp-block-heading\" id=\"install-apache\">Install Apache:<\/h3>\n\n\n\n<p>To set up Roundcube with Apache, install it with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install apache2 -y  <\/code><\/pre>\n\n\n\n<p>Ensure Apache is running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start apache2  \n$ sudo systemctl enable apache2  <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-nginx\">Install Nginx:<\/h3>\n\n\n\n<p>For Nginx users, install it with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install nginx -y  <\/code><\/pre>\n\n\n\n<p>Start and enable the Nginx service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start nginx  \n$ sudo systemctl enable nginx  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-set-up-a-database-for-roundcube\"><strong>Step 4: Set Up a Database for Roundcube<\/strong><\/h2>\n\n\n\n<p>Roundcube requires a database to store user settings and data. You can use MariaDB or MySQL.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-mariadb\">Install MariaDB:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install mariadb-server -y  <\/code><\/pre>\n\n\n\n<p>Secure the MariaDB installation:<\/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-roundcube-database\">Create a Roundcube Database:<\/h3>\n\n\n\n<p>Log into the database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql -u root -p  <\/code><\/pre>\n\n\n\n<p>Run the following SQL commands to create a database and user for Roundcube:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE DATABASE roundcubemail;  \nCREATE USER 'roundcubeuser'@'localhost' IDENTIFIED BY 'strongpassword';  \nGRANT ALL PRIVILEGES ON roundcubemail.* TO 'roundcubeuser'@'localhost';  \nFLUSH PRIVILEGES;  \nEXIT;  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-download-and-install-roundcube\"><strong>Step 5: Download and Install Roundcube<\/strong><\/h2>\n\n\n\n<p>Visit the&nbsp;<a href=\"https:\/\/roundcube.net\/\" target=\"_blank\" rel=\"noreferrer noopener\">Roundcube official website<\/a>&nbsp;and get the latest version of Roundcube. Alternatively, download it using the command line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget https:\/\/github.com\/roundcube\/roundcubemail\/releases\/download\/1.6.9\/roundcubemail-1.6.9-complete.tar.gz<\/code><\/pre>\n\n\n\n<p>Extract the downloaded file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ tar -xvzf roundcubemail-1.6.9-complete.tar.gz  <\/code><\/pre>\n\n\n\n<p>Move the files to your web server\u2019s root directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mv roundcubemail-1.6.9 \/var\/www\/roundcube  <\/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 chown -R www-data:www-data \/var\/www\/roundcube  \n$ sudo chmod -R 755 \/var\/www\/roundcube  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-configure-apache-for-roundcube\"><strong>Step 6: Configure Apache for Roundcube<\/strong><\/h2>\n\n\n\n<p>Create a new configuration file for Roundcube:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/apache2\/sites-available\/roundcube.conf  <\/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 yourdomain.com  \n    DocumentRoot \/var\/www\/roundcube  \n\n    <strong>&lt;Directory \/var\/www\/roundcube&gt;<\/strong>  \n        Options FollowSymLinks  \n        AllowOverride All  \n        Require all granted  \n    <strong>&lt;\/Directory&gt;<\/strong>  \n\n    ErrorLog ${APACHE_LOG_DIR}\/roundcube_error.log  \n    CustomLog ${APACHE_LOG_DIR}\/roundcube_access.log combined  \n<strong>&lt;\/VirtualHost&gt;<\/strong>  <\/code><\/pre>\n\n\n\n<p>Enable the site and restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2ensite roundcube.conf  \n$ sudo systemctl restart apache2  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-7-configure-nginx-for-roundcube\"><strong>Step 7: Configure Nginx for Roundcube<\/strong><\/h2>\n\n\n\n<p>For Nginx users, create a new configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/nginx\/sites-available\/roundcube  <\/code><\/pre>\n\n\n\n<p>Add this configuration:<\/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 yourdomain.com;  \n\n    root \/var\/www\/roundcube;  \n    index index.php index.html;  \n\n    <strong>location<\/strong> \/ {  \n        try_files $uri $uri\/ \/index.php;  \n    }  \n\n    <strong>location<\/strong> ~ \\.php$ {  \n        include snippets\/fastcgi-php.conf;  \n        fastcgi_pass unix:\/var\/run\/php\/php7.4-fpm.sock;  \n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;  \n        include fastcgi_params;  \n    }  \n\n    <strong>location<\/strong> ~ \/\\.ht {  \n        deny all;  \n    }  \n}  <\/code><\/pre>\n\n\n\n<p>Enable the configuration and restart Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo ln -s \/etc\/nginx\/sites-available\/roundcube \/etc\/nginx\/sites-enabled\/  \n$ sudo systemctl restart nginx  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-8-complete-roundcube-installation-via-web-interface\"><strong>Step 8: Complete Roundcube Installation via Web Interface<\/strong><\/h2>\n\n\n\n<ol>\n<li>Open your browser and navigate to&nbsp;<code>http:\/\/yourdomain.com\/installer<\/code>.<\/li>\n\n\n\n<li>Follow the on-screen instructions to verify dependencies and configure the database.<\/li>\n\n\n\n<li>Enter the database details created earlier (e.g.,&nbsp;<code>roundcubemail<\/code>,&nbsp;<code>roundcubeuser<\/code>, and your password).<\/li>\n\n\n\n<li>Complete the installation process and remove the installer directory for security:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo rm -rf \/var\/www\/roundcube\/installer <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-9-configure-dns-for-webmail\"><strong>Step 9: Configure DNS for Webmail<\/strong><\/h2>\n\n\n\n<p>To access Roundcube via&nbsp;<code>webmail.yourdomain.com<\/code>, set up a DNS A record pointing&nbsp;<code>webmail<\/code>&nbsp;to your server\u2019s IP.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-10-secure-the-setup-with-https\"><strong>Step 10: Secure the setup with HTTPS<\/strong><\/h2>\n\n\n\n<p>Use Let\u2019s Encrypt to secure the connection. Install Certbot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install certbot python3-certbot-apache -y  <\/code><\/pre>\n\n\n\n<p>For Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo certbot --apache -d yourdomain.com -d webmail.yourdomain.com  <\/code><\/pre>\n\n\n\n<p>For Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install python3-certbot-nginx -y  \n$ sudo certbot --nginx -d yourdomain.com -d webmail.yourdomain.com  <\/code><\/pre>\n\n\n\n<p>Ensure the certificate is renewed automatically:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl enable certbot.timer  <\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"troubleshooting-common-issues\"><strong>Troubleshooting Common Issues<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"database-errors\">Database Errors<\/h3>\n\n\n\n<ul>\n<li>Check your database credentials in&nbsp;<code>config\/config.inc.php<\/code>.<\/li>\n\n\n\n<li>Ensure the database user has necessary permissions.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"php-errors\">PHP Errors<\/h3>\n\n\n\n<ul>\n<li>Verify installed PHP modules.<\/li>\n\n\n\n<li>Check&nbsp;<code>php.ini<\/code>&nbsp;for configurations like&nbsp;<code>memory_limit<\/code>&nbsp;and&nbsp;<code>upload_max_filesize<\/code>.<\/li>\n<\/ul>\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 do I access Roundcube after installation?<br>Access it via your browser at&nbsp;<code>http:\/\/yourdomain.com<\/code>&nbsp;or&nbsp;<code>http:\/\/webmail.yourdomain.com<\/code>.<\/p>\n\n\n\n<p>What is the default login for Roundcube?<br>Roundcube does not create default logins. Use your email credentials configured on the mail server.<\/p>\n\n\n\n<p>How do I enable plugins in Roundcube?<br>Copy the plugin files to the&nbsp;<code>plugins\/<\/code>&nbsp;directory and activate them in&nbsp;<code>config\/config.inc.php<\/code>.<\/p>\n\n\n\n<p>Can I integrate Roundcube with other email servers?<br>Yes, Roundcube works with any IMAP server like Postfix or Dovecot.<\/p>\n\n\n\n<p>How do I reset a Roundcube user password?<br>Password resets must be managed at the mail server level.<\/p>\n\n\n\n<p>Is Roundcube free to use?<br>Yes, Roundcube is open-source and free to use under the GPL license.<\/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 Roundcube Webmail with Apache or Nginx is straightforward if you follow the steps carefully. With a modern interface and powerful features, Roundcube is an excellent choice for managing emails via the web. By securing your setup and integrating it with DNS, you can provide a reliable webmail experience.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Managing email effectively is crucial for businesses and individuals. Roundcube Webmail is a popular, open-source webmail client that provides an intuitive interface for email management. Whether you are using Apache or Nginx as your web server, this guide will walk you through the complete setup process. Follow this step-by-step tutorial to get started, even if ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-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,279],"tags":[],"yoast_head":"\n<title>How to Setup Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.\" \/>\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-roundcube-webmail-apache-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 Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-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-11-23T10:16:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-23T10:16:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_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-roundcube-webmail-apache-nginx\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to Setup Roundcube Webmail with Apache or Nginx\",\"datePublished\":\"2024-11-23T10:16:21+00:00\",\"dateModified\":\"2024-11-23T10:16:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/\"},\"wordCount\":707,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Mail Servers\",\"Softwares and Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/\",\"name\":\"How to Setup Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-11-23T10:16:21+00:00\",\"dateModified\":\"2024-11-23T10:16:23+00:00\",\"description\":\"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Setup Roundcube 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=1781214743\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743\",\"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 Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","description":"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.","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-roundcube-webmail-apache-nginx\/","og_locale":"en_US","og_type":"article","og_title":"How to Setup Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","og_description":"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-11-23T10:16:21+00:00","article_modified_time":"2024-11-23T10:16:23+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/11\/roundcube_apache_nginx_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-roundcube-webmail-apache-nginx\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to Setup Roundcube Webmail with Apache or Nginx","datePublished":"2024-11-23T10:16:21+00:00","dateModified":"2024-11-23T10:16:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/"},"wordCount":707,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Mail Servers","Softwares and Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/","name":"How to Setup Roundcube Webmail with Apache or Nginx - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-11-23T10:16:21+00:00","dateModified":"2024-11-23T10:16:23+00:00","description":"Learn how to setup Roundcube Webmail with Apache or Nginx step by step. A beginner-friendly guide for configuring Roundcube Webmail efficiently.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-setup-roundcube-webmail-apache-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Setup Roundcube 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=1781214743","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743","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\/9732"}],"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=9732"}],"version-history":[{"count":4,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/9732\/revisions"}],"predecessor-version":[{"id":9756,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/9732\/revisions\/9756"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=9732"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=9732"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=9732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}