diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2019-03-21 20:11:41 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2019-03-21 20:11:41 +0100 |
commit | 645f43889c0b3ade145506d84f7a330e10e2349e (patch) | |
tree | 5c17ec3bf94af9f09b909a11cf445469f3760799 /nginx | |
parent | 7b258b6fc1ae8c5dc68e0195dd499e3dcc55f56e (diff) | |
download | pillar-645f43889c0b3ade145506d84f7a330e10e2349e.tar.xz |
nginx: Remove semicolons
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'nginx')
-rw-r--r-- | nginx/kyriasis_com.sls | 4 | ||||
-rw-r--r-- | nginx/matrix_kyriasis_com.sls | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/nginx/kyriasis_com.sls b/nginx/kyriasis_com.sls index c04a806..bc1a749 100644 --- a/nginx/kyriasis_com.sls +++ b/nginx/kyriasis_com.sls @@ -47,8 +47,8 @@ nginx: # http://www.gnuterrypratchett.com/ - add_header: 'X-Clacks-Overhead "GNU Terry Pratchett"' - - add_header: 'Access-Control-Allow-Origin' '*'; - - add_header: 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, HEAD, OPTIONS'; + - add_header: 'Access-Control-Allow-Origin' '*' + - add_header: 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, HEAD, OPTIONS' - client_max_body_size: 128m diff --git a/nginx/matrix_kyriasis_com.sls b/nginx/matrix_kyriasis_com.sls index d9897de..3883cec 100644 --- a/nginx/matrix_kyriasis_com.sls +++ b/nginx/matrix_kyriasis_com.sls @@ -51,8 +51,8 @@ nginx: # http://www.gnuterrypratchett.com/ - add_header: 'X-Clacks-Overhead "GNU Terry Pratchett"' - - add_header: 'Access-Control-Allow-Origin' '*'; - - add_header: 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, HEAD, OPTIONS'; + - add_header: 'Access-Control-Allow-Origin' '*' + - add_header: 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, HEAD, OPTIONS' - client_max_body_size: 128m |