summaryrefslogtreecommitdiff
path: root/roles/apps/coturn/templates/nginx-vhost.conf.j2
blob: 577c33b449a158a8c7340b27b7f4bc6843797d11 (plain) (blame)
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
server {
    listen 80;
    listen [::]:80;
    server_name {{ coturn_hostnames | join(' ') }};

    include snippets/acmetool.conf;

    location / {
        return 301 https://$host$request_uri;
    }
}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name {{ coturn_hostnames | join(' ') }};

    include snippets/acmetool.conf;
    include snippets/tls.conf;
    ssl_certificate     {{ x509_certificate_path_fullchain }};
    ssl_certificate_key {{ x509_certificate_path_key }};
    include snippets/hsts.conf;

    location / {
        return 404;
    }
}