aboutsummaryrefslogtreecommitdiff
path: root/services/templates/nginx/conf.d/mail.conf.template
blob: c115c2e480e84fd89580ed7eec1b09153e2f15b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
server {
    server_name mail.@@CRUPEST_DOMAIN@@;
    include common/https-listen;
    
    location = /robots.txt {
        root /srv/mail;
    }

    location / {
        include common/proxy-common;
        proxy_pass http://roundcubemail:80/;
    }

    location /rspamd/ {
        include common/proxy-common;
        proxy_pass http://mailserver:11334/;
    }

    client_max_body_size 5G;
}


server {
    server_name mail.@@CRUPEST_DOMAIN@@;
    include common/http-listen;

    include common/https-redirect;
    include common/acme-challenge;
}