Skip to content
Snippets Groups Projects
Commit 1952c9e7 authored by lcappelli's avatar lcappelli
Browse files

Indentation

parent 12b625bb
No related branches found
No related tags found
1 merge request!23Use nginx with njs instead of openresty with lua
...@@ -20,17 +20,17 @@ __DATA__ ...@@ -20,17 +20,17 @@ __DATA__
ssl_client_certificate ../../trust-anchors/igi-test-ca.pem; ssl_client_certificate ../../trust-anchors/igi-test-ca.pem;
ssl_verify_depth 10; ssl_verify_depth 10;
ssl_verify_client on; ssl_verify_client on;
location = / { location = / {
auth_request /authz; auth_request /authz;
default_type text/plain; default_type text/plain;
echo $some_var; echo $some_var;
} }
location = /authz { location = /authz {
internal; internal;
set $some_var $voms_user; set $some_var $voms_user;
return 200; return 200;
} }
} }
--- config --- config
location = / { location = / {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment