Mercurial > repos > other > Puppet
comparison modules/apache/templates/vhost/_auth_cas.erb @ 257:675c1cc61eaf
Update Apache module to get CentOS 8 support
Unfortunately it only fixes some bits. mod_wsgi still needs
other approaches
This also overrides the vhost modification to make them come last
in the import order (after module loading)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 22 Dec 2019 14:43:29 -0500 |
parents | |
children | d9352a684e62 |
comparison
equal
deleted
inserted
replaced
252:47750947f4dc | 257:675c1cc61eaf |
---|---|
1 <% if @cas_enabled -%> | |
2 <%- if @cas_cookie_path -%> | |
3 CASCookiePath <%= @cas_cookie_path %> | |
4 <%- end -%> | |
5 <%- if @cas_login_url -%> | |
6 CASLoginURL <%= @cas_login_url %> | |
7 <%- end -%> | |
8 <%- if @cas_validate_url -%> | |
9 CASValidateURL <%= @cas_validate_url %> | |
10 <%- end -%> | |
11 <%- if @cas_version -%> | |
12 CASVersion <%= @cas_version %> | |
13 <%- end -%> | |
14 <%- if @cas_debug -%> | |
15 CASDebug <%= @cas_debug %> | |
16 <%- end -%> | |
17 <%- if @cas_certificate_path -%> | |
18 CASCertificatePath <%= @cas_certificate_path %> | |
19 <%- end -%> | |
20 <%- if @cas_proxy_validate_url -%> | |
21 CASProxyValidateURL <%= @cas_proxy_validate_url %> | |
22 <%- end -%> | |
23 <%- if @cas_validate_depth -%> | |
24 CASValidateDepth <%= @cas_validate_depth %> | |
25 <%- end -%> | |
26 <%- if @cas_root_proxied_as -%> | |
27 CASRootProxiedAs <%= @cas_root_proxied_as %> | |
28 <%- end -%> | |
29 <%- if @cas_cookie_entropy -%> | |
30 CASCookieEntropy <%= @cas_cookie_entropy %> | |
31 <%- end -%> | |
32 <%- if @cas_timeout -%> | |
33 CASTimeout <%= @cas_timeout %> | |
34 <%- end -%> | |
35 <%- if @cas_idle_timeout -%> | |
36 CASIdleTimeout <%= @cas_idle_timeout %> | |
37 <%- end -%> | |
38 <%- if @cas_cache_clean_interval -%> | |
39 CASCacheCleanInterval <%= @cas_cache_clean_interval %> | |
40 <%- end -%> | |
41 <%- if @cas_cookie_domain -%> | |
42 CASCookieDomain <%= @cas_cookie_domain %> | |
43 <%- end -%> | |
44 <%- if @cas_cookie_http_only -%> | |
45 CASCookieHttpOnly <%= @cas_cookie_http_only %> | |
46 <%- end -%> | |
47 <%- if @cas_authoritative -%> | |
48 CASAuthoritative <%= @cas_authoritative %> | |
49 <%- end -%> | |
50 <%- if @cas_sso_enabled -%> | |
51 CASSSOEnabled On | |
52 <%- end -%> | |
53 <%- if @cas_validate_saml -%> | |
54 CASValidateSAML On | |
55 <%- end -%> | |
56 <%- if @cas_attribute_prefix -%> | |
57 CASAttributePrefix <%= @cas_attribute_prefix %> | |
58 <%- end -%> | |
59 <%- if @cas_attribute_delimiter -%> | |
60 CASAttributeDelimiter <%= @cas_attribute_delimiter %> | |
61 <%- end -%> | |
62 <%- if @cas_scrub_request_headers -%> | |
63 CASAttributeDelimiter On | |
64 <%- end -%> | |
65 <%- end -%> |