From cfa514becd1d1d0ada5f3939366ebd0b96e5eb38 Mon Sep 17 00:00:00 2001 From: RunBTC <143069848+runbtc@users.noreply.github.com> Date: Thu, 14 Nov 2024 05:40:44 +0000 Subject: [PATCH] Fix install script nginx config parse error --- production/nginx/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/production/nginx/nginx.conf b/production/nginx/nginx.conf index 169faab305..81c0c01d58 100644 --- a/production/nginx/nginx.conf +++ b/production/nginx/nginx.conf @@ -42,6 +42,9 @@ http { #listen [::]:443 ssl http2; server_name _; + # set cors headers if necessary + set $cors_approved_origin ''; + # tor v3 listen 127.0.0.1:81; set $onion "__NGINX_MEMPOOL_ONION__"; @@ -80,6 +83,9 @@ http { #listen [::]:443 ssl http2; server_name _; + # set cors headers if necessary + set $cors_approved_origin ''; + # tor v3 listen 127.0.0.1:83; set $onion "__NGINX_LIQUID_ONION__";