From caa5ffbb5c62e92b04da31ece443ba1c95eef393 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Wed, 28 Jun 2023 11:29:24 +0200 Subject: Nginx declarations? --- host/Rory-nginx/hosts/rory.gay/git.nix | 10 +++++----- host/Rory-nginx/hosts/rory.gay/matrix-bak.nix | 12 ++++++------ host/Rory-nginx/hosts/rory.gay/matrix.nix | 8 ++++---- host/Rory-nginx/hosts/rory.gay/mru.nix | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/host/Rory-nginx/hosts/rory.gay/git.nix b/host/Rory-nginx/hosts/rory.gay/git.nix index 6aa5115..812e946 100755 --- a/host/Rory-nginx/hosts/rory.gay/git.nix +++ b/host/Rory-nginx/hosts/rory.gay/git.nix @@ -4,10 +4,10 @@ addSSL = true; extraConfig = '' autoindex on; - more_set_headers 'Access-Control-Allow-Origin' '*'; - more_set_headers 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; - more_set_headers 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range'; - more_set_headers 'Access-Control-Expose-Headers' 'Content-Length,Content-Range'; - more_set_headers 'Access-Control-Allow-Credentials' 'true'; + more_set_headers 'Access-Control-Allow-Origin: *'; + more_set_headers 'Access-Control-Allow-Methods: GET, POST, OPTIONS'; + more_set_headers 'Access-Control-Allow-Headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range'; + more_set_headers 'Access-Control-Expose-Headers: Content-Length,Content-Range'; + more_set_headers 'Access-Control-Allow-Credentials: true'; ''; } diff --git a/host/Rory-nginx/hosts/rory.gay/matrix-bak.nix b/host/Rory-nginx/hosts/rory.gay/matrix-bak.nix index ed47d35..2780979 100755 --- a/host/Rory-nginx/hosts/rory.gay/matrix-bak.nix +++ b/host/Rory-nginx/hosts/rory.gay/matrix-bak.nix @@ -5,18 +5,18 @@ proxyPass = "http://192.168.1.5:8008"; extraConfig = '' if ($request_method = 'OPTIONS') { - more_set_headers 'Access-Control-Allow-Origin' '*'; - more_set_headers 'Access-Control-Allow-Methods' '*'; + more_set_headers 'Access-Control-Allow-Origin: *'; + more_set_headers 'Access-Control-Allow-Methods: *'; # # Custom headers and headers various browsers *should* be OK with but aren't # - more_set_headers 'Access-Control-Allow-Headers' '*'; + more_set_headers 'Access-Control-Allow-Headers: *'; # # Tell client that this pre-flight info is valid for 20 days # - more_set_headers 'Access-Control-Max-Age' 1728000; - more_set_headers 'Content-Type' 'text/plain; charset=utf-8'; - more_set_headers 'Content-Length' 0; + more_set_headers 'Access-Control-Max-Age: 1728000'; + more_set_headers 'Content-Type: text/plain; charset=utf-8'; + more_set_headers 'Content-Length: 0'; return 204; } ''; diff --git a/host/Rory-nginx/hosts/rory.gay/matrix.nix b/host/Rory-nginx/hosts/rory.gay/matrix.nix index 0c720bd..60a8e2c 100755 --- a/host/Rory-nginx/hosts/rory.gay/matrix.nix +++ b/host/Rory-nginx/hosts/rory.gay/matrix.nix @@ -5,17 +5,17 @@ # proxyPass = "http://192.168.1.5:8008"; # extraConfig = '' # if ($request_method = 'OPTIONS') { - # more_set_headers 'Access-Control-Allow-Origin' '*'; - # more_set_headers 'Access-Control-Allow-Methods' '*'; + # more_set_headers 'Access-Control-Allow-Origin: *'; + # more_set_headers 'Access-Control-Allow-Methods: *'; # # # # Custom headers and headers various browsers *should* be OK with but aren't # # - # more_set_headers 'Access-Control-Allow-Headers' '*'; + # more_set_headers 'Access-Control-Allow-Headers: *'; # # # # Tell client that this pre-flight info is valid for 20 days # # # more_set_headers 'Access-Control-Max-Age' 1728000; - # more_set_headers 'Content-Type' 'text/plain; charset=utf-8'; + # more_set_headers 'Content-Type: text/plain; charset=utf-8'; # more_set_headers 'Content-Length' 0; # return 204; # }; diff --git a/host/Rory-nginx/hosts/rory.gay/mru.nix b/host/Rory-nginx/hosts/rory.gay/mru.nix index 86dd952..b65bf51 100755 --- a/host/Rory-nginx/hosts/rory.gay/mru.nix +++ b/host/Rory-nginx/hosts/rory.gay/mru.nix @@ -14,10 +14,10 @@ "/" = { index = "index.html"; extraConfig = '' - more_set_headers 'Access-Control-Allow-Origin' '*'; - more_set_headers 'Access-Control-Allow-Methods' '*'; - more_set_headers 'Access-Control-Allow-Headers' '*'; - more_set_headers 'Access-Control-Expose-Headers' '*'; + more_set_headers 'Access-Control-Allow-Origin: *'; + more_set_headers 'Access-Control-Allow-Methods: *'; + more_set_headers 'Access-Control-Allow-Headers: *'; + more_set_headers 'Access-Control-Expose-Headers: *'; more_set_headers 'Access-Control-Max-Age' 1728000; # default to /index.html if file not found -- cgit 1.4.1