1

Topic: Disable HTTPS for Roundcube Webmail

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Linux/BSD distribution name and version: Debina 9
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx):Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

Hello,
I need to disable https wor webmail client because an internal firewall block our webmail outside (cannot be opened)
For this reason we mus use (no other option) http protocol

All post are related to apache server but we have Redmail on Nginx server (no other option during install)

Can someone help me with real situation (Nginx) ?
We need to disable redirect .. and so on..

Thank you
Pierluigi

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Disable HTTPS for Roundcube Webmail

+1

I want disable https for www + iredadmin + Roundcube

There is no solution on forum

Thx

3 (edited by Alxpv 2019-02-13 18:08:13)

Re: Disable HTTPS for Roundcube Webmail

Hello,

You should see NGINX config, it should be made like this (see /etc/nginx/sites-available for Ubuntu):

1) Found section starting:
server {
    listen 443;
    server_name  _;
...

2) Copy it until sign } or edit to leave only http AND set listen 80; (instead listen 443;)

3) Comment with # or remove https redirect string (if exist): return 301 https://$host$request_uri;