aboutsummaryrefslogtreecommitdiff
path: root/templates/nginx/conf.d/2fa.conf.template
blob: 278e4a194b6389c9ab9e2a17c3a59fe944aac2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
    server_name 2fa.${CRUPEST_DOMAIN};
    include common/https-listen;
    
    location / {
        include common/proxy-common;
        proxy_pass http://2fauth:8000/;
    }
}

server {
    server_name 2fa.${CRUPEST_DOMAIN};
    include common/http-listen;

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