Hello,you should think about split DNS and point the domain name directly to your NAS without the firewall for your local LAN clients.If you don't want to do this, you need to setup NAT reflection. There are tons of threads in the forum and detailed documentation available. The better way is split DNS. Have fun and good luck.
worker_processes auto;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; }}
how to set manualy a configuration for nginx on opnsense ?