- 12 Nov, 2020 1 commit
-
-
sheenaajay authored
(IAC-1186) Add new $use_servername_for_filenames parameter
-
- 10 Nov, 2020 1 commit
-
-
Ciaran McCrisken authored
Prior to this commit, the `$filename` variable, which is used to construct the filename of Apache's various config and log files, obtained it's default value from the `$name` parameter. As #2064 highlights, it is possible for `$name` to contain spaces in it and this can cause cumbersome log file names, albeit POSIX compliant. Also related is #2068, which changes the `$filename` variable source from `$name` to `$servername`. This arguably seems more appropriate, especially given that `$servername` defaults to `$name` if undefined. This commit attempts to create a satisfactory solution to both #2064 and #2068 by introducing the `$use_servername_for_filenames` param. When set to `true`, a sanitized `$servername` parameter value will be used to construct `$filename`. When undefined or set to `$false`, it will retain the existing behaviour and use the `$name` parameter value. This will default to `false` until the next major release (v6.0.0), after which it will default to `true`. Then, in the subsequent major release (v7.0.0) it will be deprecated altogether and the default behaviour will be to use the sanitized value of `$servername` for the `$filename` var. Warning messages are output to the console to alert users of this change in behaviour.
-
- 04 Nov, 2020 2 commits
-
-
david22swan authored
Allow relative paths in oidc_redirect_uri
-
Ciaran McCrisken authored
-
- 02 Nov, 2020 4 commits
-
-
sanfrancrisko authored
Add ssl_proxy_machine_cert_chain param to vhost class
-
Ciaran McCrisken authored
-
sanfrancrisko authored
Add missing tests for RHEL 8
-
psaiz authored
-
- 26 Oct, 2020 5 commits
-
-
Yehuda Katz authored
-
Adrian Iurca authored
WIP: Support mod_auth_gssapi parameters
-
Adrian Iurca authored
Change icon path
-
Yehuda Katz authored
-
Yehuda Katz authored
-
- 23 Oct, 2020 1 commit
-
-
Steve Traylen authored
mod_auth_gssapi parameters can only used inside a directory section of a vhost. Parameters are specified as a hash `gssapi` to the directories parameter. Currently only the three obvious parameters are supported, adding extra ones is a trivial addition to the `_gssapi.epp` template. Example ```puppet include apache::mod::auth_gssapi apache::vhost { 'sample.example.net': docroot => '/path/to/directory', directories => [ { path => '/path/to/different/dir', gssapi => { credstore => 'keytab:/foo/bar.keytab', localname => 'Off', sslonly => 'On', } }, ], ``` These 3 values match to an apache configuration of ```config <Directory /path/to/directory> GssapiSSLonly Off GssapiLocalName On GssapiCredStore keytab:/foo/bar.keytab </Directory> ``` https://github.com/gssapi/mod_auth_gssapi#gssapisslonly
-
- 12 Oct, 2020 1 commit
-
-
david22swan authored
Use Ruby 2.7 compatible string matching
-
- 06 Oct, 2020 3 commits
-
-
Adrian Iurca authored
Resolve easy puppet-lint notices
-
sanfrancrisko authored
Use Ruby 2.7 compatible string matching
-
Adrian Iurca authored
-
- 05 Oct, 2020 1 commit
-
-
sanfrancrisko authored
(IAC-1187) - Release version 5.6.0 Mergeback
-
- 02 Oct, 2020 1 commit
-
-
Abel Navarro authored
Added the Apache vhost proxy config option SSLProxyMachineCertificateChainFile. Reference: https://httpd.apache.org/docs/current/mod/mod_ssl.html#sslproxymachinecertificatechainfile
-
- 01 Oct, 2020 2 commits
-
-
Auto-release authored
-
Adrian Iurca authored
make apache::mod::fcgid redhat 8 compatible
-
- 30 Sep, 2020 1 commit
-
-
creativefre authored
before -> rhel 8 fcgid.load is loaded before unixd.load which causes httpd to fail
-
- 29 Sep, 2020 2 commits
-
-
sanfrancrisko authored
Replace some occurrences of non-ASCII chars
-
sanfrancrisko authored
Fix typos including consecutive occurrences of 'the'
-
- 28 Sep, 2020 2 commits
- 25 Sep, 2020 1 commit
-
-
Jorge Vallecillo authored
-
- 22 Sep, 2020 1 commit
-
-
Pat Riehecky authored
-
- 16 Sep, 2020 1 commit
-
-
daianamezdrea authored
(maint) Use 'policycoreutils-python-utils' on RHEL 8
-
- 15 Sep, 2020 1 commit
-
-
Ciaran McCrisken authored
Add an additional reference that was missed in https://github.com/puppetlabs/puppetlabs-apache/pull/2065
-
- 14 Sep, 2020 2 commits
-
-
Michael T Lombardi (He/Him) authored
(maint) Use 'policycoreutils-python-utils' on RHEL 8
-
Ciaran McCrisken authored
The `policycoreutils-python` has now been replaced by the `policycoreutils-python-utils` on RHEL 8 according to [this documentation](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html-single/considerations_in_adopting_rhel_8/index#selinux-python3_security)
-
- 10 Sep, 2020 1 commit
-
-
daianamezdrea authored
Configure default shared lib path for mod_wsgi on RHEL8
-
- 09 Sep, 2020 1 commit
-
-
Nacho Barrientos authored
RHEL8: # rpm -ql python3-mod_wsgi | grep \.so$ /usr/lib64/httpd/modules/mod_wsgi_python3.so RHEL7: # rpm -ql mod_wsgi | grep \.so$ /usr/lib64/httpd/modules/mod_wsgi.so
-
- 03 Sep, 2020 1 commit
-
-
david22swan authored
pdksync - (feat) - Removal of inappropriate terminology
-
- 27 Aug, 2020 2 commits
-
-
Paula Muir authored
-
Paula Muir authored
-
- 10 Aug, 2020 2 commits
-
-
sanfrancrisko authored
Various enhancements to apache::mod::passenger
-
Romain Tartière authored
Point to the latest documentation available. The old documentation is not updated in respect to the latest passenger releases, so for consistency update all links to point to the new documenation.
-