[Feature Request] Set up a mail server behind Nginx Proxy Manager
See original GitHub issueHi,
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:
- Created 3 years ago
- Reactions:10
- Comments:10
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Any update on this issue?
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.