19 lines
369 B
Plaintext
19 lines
369 B
Plaintext
|
# Redirect to Migadu webmail
|
||
|
|
||
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name mail.*;
|
||
|
|
||
|
include /config/nginx/ssl.conf;
|
||
|
|
||
|
# enable for ldap auth, fill in ldap details in ldap.conf
|
||
|
#include /config/nginx/ldap.conf;
|
||
|
|
||
|
# enable for Authelia
|
||
|
#include /config/nginx/authelia-server.conf;
|
||
|
|
||
|
return 301 https://webmail.migadu.com;
|
||
|
}
|