From 05a507a07b398f935187e8265974d0e82d0e77d2 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 14 Aug 2023 23:56:09 +0200 Subject: coturn: move to generic nginx-vhost template --- roles/apps/coturn/templates/nginx-vhost.conf.j2 | 27 ------------------------- 1 file changed, 27 deletions(-) delete mode 100644 roles/apps/coturn/templates/nginx-vhost.conf.j2 (limited to 'roles/apps/coturn/templates') diff --git a/roles/apps/coturn/templates/nginx-vhost.conf.j2 b/roles/apps/coturn/templates/nginx-vhost.conf.j2 deleted file mode 100644 index 577c33b4..00000000 --- a/roles/apps/coturn/templates/nginx-vhost.conf.j2 +++ /dev/null @@ -1,27 +0,0 @@ -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; - } -} -- cgit v1.2.3