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
|