question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Feature Request] Set up a mail server behind Nginx Proxy Manager

See original GitHub issue

Hi,

First of all, many thanks to have created this great tool to handle reverse proxy servers in a simple and great UI.

I need to “stream” some mails servers ports (25,110,143 etc…) following a sub domain e.g. mail.example.com

An example here:

mail {
    server_name mail.example.com;
    auth_http   localhost:9000/cgi-bin/nginxauth.cgi;

    proxy_pass_error_message on;

    ssl                 on;
    ssl_certificate     /etc/ssl/certs/server.crt;
    ssl_certificate_key /etc/ssl/certs/server.key;
    ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers         HIGH:!aNULL:!MD5;
    ssl_session_cache   shared:SSL:10m;
    ssl_session_timeout 10m;

    server {
        listen     25;
        protocol   smtp;
        smtp_auth  login plain cram-md5;
    }

    server {
        listen    110;
        protocol  pop3;
        pop3_auth plain apop cram-md5;
}

     server {
        listen   143;
        protocol imap;
    }
}

I am using jc21/nginx-proxy-manager:latest 2.3

Thank you for considering this new feature request.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:10
  • Comments:10

github_iconTop GitHub Comments

4reactions
kennylajaracommented, May 12, 2021

Any update on this issue?

3reactions
Shifter2600commented, Aug 21, 2020

I would be interested in this as well. I was able to get reverse proxies going for pop but I don’t have it working for imap. Wonder if anyone has imap working.

Read more comments on GitHub >

github_iconTop Results From Across the Web

[Feature Request] Set up a mail server behind Nginx Proxy ...
Hi, First of all, many thanks to have created this great tool to handle reverse proxy servers in a simple and great UI....
Read more >
Configuring NGINX as a Mail Proxy Server
Simplify your email service and improve its performance with NGINX or NGINX Plus as a proxy for the IMAP, POP3, and SMTP protocols....
Read more >
How to Setup Nginx as Mail Proxy on Ubuntu Server
Create a top-level mail context. · Select your mail server name with the server_name directive. · The authentication server authenticates email ...
Read more >
Setting up a mail server that's behind NginxProxyManager
I'm currently running NginxProxyManager (NPM) that's providing reverse proxy services w/ SSL certs. I am now trying to get a mailserver ...
Read more >
Full Setup Instructions - Nginx Proxy Manager
Full Setup Instructions. # Running the App. Create a docker-compose.yml file: ... and if you want one that doesn't exist, create a feature...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found