summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-28 11:29:24 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-28 11:29:24 +0200
commitcaa5ffbb5c62e92b04da31ece443ba1c95eef393 (patch)
treef7485d7055f33ec8debc025e5a47c79a6da52880
parentQoutes (diff)
downloadRory-Open-Architecture-caa5ffbb5c62e92b04da31ece443ba1c95eef393.tar.xz
Nginx declarations?
-rwxr-xr-xhost/Rory-nginx/hosts/rory.gay/git.nix10
-rwxr-xr-xhost/Rory-nginx/hosts/rory.gay/matrix-bak.nix12
-rwxr-xr-xhost/Rory-nginx/hosts/rory.gay/matrix.nix8
-rwxr-xr-xhost/Rory-nginx/hosts/rory.gay/mru.nix8
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