File tree Expand file tree Collapse file tree 9 files changed +28
-8
lines changed Expand file tree Collapse file tree 9 files changed +28
-8
lines changed Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ _Public Classes_
98
98
99
99
_ Private Classes_
100
100
101
- * ` apache::confd::no_accf ` :
102
- * ` apache::default_confd_files ` :
103
- * ` apache::default_mods ` :
104
- * ` apache::package ` :
101
+ * ` apache::confd::no_accf ` : Manages the ` no-accf.conf ` file.
102
+ * ` apache::default_confd_files ` : Helper for setting up default conf.d files.
103
+ * ` apache::default_mods ` : Installs and congfigures default mods for Apache
104
+ * ` apache::package ` : Installs an Apache MPM.
105
105
* ` apache::params ` : This class manages Apache parameters
106
106
* ` apache::php ` : This class installs PHP for Apache.
107
107
* ` apache::proxy ` : This class enabled the proxy module for Apache.
108
108
* ` apache::python ` : This class installs Python for Apache
109
- * ` apache::service ` :
109
+ * ` apache::service ` : Installs and configures Apache service.
110
110
* ` apache::ssl ` : This class installs Apache SSL capabilities
111
111
* ` apache::version ` : Try to automatically detect the version by OS
112
112
@@ -131,8 +131,8 @@ outside of the defaults.
131
131
132
132
_ Private Defined types_
133
133
134
- * ` apache::default_mods::load ` :
135
- * ` apache::mpm ` :
134
+ * ` apache::default_mods::load ` : Helper used by ` apache::default_mods `
135
+ * ` apache::mpm ` : Enables the use of Apache MPMs.
136
136
* ` apache::peruser::multiplexer ` : Checks if an Apache module has a class.
137
137
* ` apache::peruser::processor ` : Enables the ` Peruser ` module for FreeBSD only.
138
138
* ` apache::security::rule_link ` : Links the activated_rules from ` apache::mod::security ` to the respective CRS rules on disk.
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Manages the `no-accf.conf` file.
3
+ #
1
4
# @api private
2
5
class apache::confd::no_accf {
3
6
# Template uses no variables
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Helper for setting up default conf.d files.
3
+ #
1
4
# @api private
2
5
class apache::default_confd_files (
3
6
$all = true ,
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Installs and congfigures default mods for Apache
3
+ #
1
4
# @api private
2
5
class apache::default_mods (
3
6
$all = true ,
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Helper used by `apache::default_mods`
3
+ #
1
4
# @api private
2
5
define apache::default_mods::load ($module = $title) {
3
6
if defined (" apache::mod::${module} " ) {
Original file line number Diff line number Diff line change
1
+ # @summary Enables the use of Apache MPMs.
2
+ #
1
3
# @api private
2
4
define apache::mpm (
3
5
$lib_path = $::apache::lib_path,
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Installs an Apache MPM.
3
+ #
1
4
# @api private
2
5
class apache::package (
3
6
$ensure = ' present' ,
Original file line number Diff line number Diff line change
1
+ # @summary
2
+ # Installs and configures Apache service.
3
+ #
1
4
# @api private
2
5
class apache::service (
3
6
$service_name = $::apache::params::service_name,
Original file line number Diff line number Diff line change 1
1
# @summary
2
- # Allows specialised cnfigurations for virtual hosts that possess requirements
2
+ # Allows specialised configurations for virtual hosts that possess requirements
3
3
# outside of the defaults.
4
4
#
5
5
# The apache module allows a lot of flexibility in the setup and configuration of virtual hosts.
You can’t perform that action at this time.
0 commit comments