Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ prefix "contents";

data['name'] = "/identity_admin";
data['wsgi']['processgroup'] = "keystone-admin";
data["casscope"] = "/";
append(data);

SELF;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Base test for keystone wsgi config
^ wsgiapplicationgroup %\{GLOBAL\}
^ wsgipassauthorization on
^ wsgiprocessgroup keystone-admin
^ casscope /
^</location>
^<virtualhost \*:5000>
^ hostnamelookups off
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
casscope [% desc %]
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ directoryindex [% desc.directoryindex.join(' ') %]
[%- IF desc.exists('limitrequestbody') %]
limitrequestbody [% desc.limitrequestbody %]
[% END -%]
[%- to_process = ['rewrite', 'handler', 'perl', 'outputfilter', 'env', 'limit', 'proxy', 'wsgi', 'expires'] -%]
[%- to_process = ['rewrite', 'handler', 'perl', 'outputfilter', 'env', 'limit', 'proxy', 'wsgi', 'expires', 'casscope'] -%]
[%- FOREACH p IN to_process -%]
[%- IF desc.exists(p) -%]
[% INCLUDE "metaconfig/httpd/config/${p}.tt" desc=desc.$p %]
Expand Down
1 change: 1 addition & 0 deletions ncm-metaconfig/src/main/metaconfig/httpd/pan/schema.pan
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@ type httpd_directory = {
"davrods" ? httpd_davrods
"files" ? httpd_file[]
"expires" ? httpd_expires
"casscope" ? string_trimmed
};

type httpd_vhost_ip = string with is_ip(SELF) || SELF == '*';
Expand Down