nginx/http/mail.conf

10 lines
168 B
Plaintext
Raw Permalink Normal View History

2023-04-01 04:18:56 +00:00
server {
2024-09-09 19:34:14 +00:00
listen 443 ssl;
2023-04-26 22:10:02 +00:00
server_name mail.tronnet.net;
2023-12-12 03:05:00 +00:00
include snippets/ssl-acme.conf;
2023-04-26 22:10:02 +00:00
location / {
2023-10-13 23:26:32 +00:00
proxy_pass http://mail.dmz/;
proxy_redirect default;
2023-04-26 22:10:02 +00:00
}
2023-04-01 04:18:56 +00:00
}