Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8391826
config.pp
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
config.pp
View Options
# Class: nginx::config
#
# This module manages NGINX bootstrap and configuration
#
# Parameters:
#
# There are no default parameters for this class.
#
# Actions:
#
# Requires:
#
# Sample Usage:
#
# This class file is not called directly
class
nginx
::
config
(
$worker_processes
=
$nginx::params::nx_worker_processes,
$worker_connections
=
$nginx::params::nx_worker_connections,
$worker_rlimit_nofile
=
$nginx::params::nx_worker_rlimit_nofile,
$confd_purge
=
$nginx::params::nx_confd_purge,
$vhost_purge
=
$nginx::params::nx_vhost_purge,
$server_tokens
=
$nginx::params::nx_server_tokens,
$proxy_set_header
=
$nginx::params::nx_proxy_set_header,
$proxy_cache_path
=
$nginx::params::nx_proxy_cache_path,
$proxy_cache_levels
=
$nginx::params::nx_proxy_cache_levels,
$proxy_cache_keys_zone
=
$nginx::params::nx_proxy_cache_keys_zone,
$proxy_cache_max_size
=
$nginx::params::nx_proxy_cache_max_size,
$proxy_cache_inactive
=
$nginx::params::nx_proxy_cache_inactive,
$proxy_http_version
=
$nginx::params::nx_proxy_http_version,
$names_hash_bucket_size
=
$nginx::params::nx_names_hash_bucket_size,
$names_hash_max_size
=
$nginx::params::nx_names_hash_max_size,
$types_hash_max_size
=
$nginx::params::nx_types_hash_max_size,
$types_hash_bucket_size
=
$nginx::params::nx_types_hash_bucket_size,
$client_max_body_size
=
$nginx::params::nx_client_max_body_size,
$proxy_buffers
=
$nginx::params::nx_proxy_buffers,
$http_cfg_append
=
$nginx::params::nx_http_cfg_append,
$nginx_error_log
=
$nginx::params::nx_nginx_error_log,
$http_access_log
=
$nginx::params::nx_http_access_log,
$proxy_buffer_size
=
$nginx::params::nx_proxy_buffer_size,
$gzip
=
$nginx::params::nx_gzip,
$conf_template
=
$nginx::params::nx_conf_template,
$proxy_conf_template
=
$nginx::params::nx_proxy_conf_template,
$proxy_redirect
=
$nginx::params::nx_proxy_redirect,
$fastcgi_cache_path
=
$nginx::params::nx_fastcgi_cache_path,
)
inherits
nginx
::
params
{
File
{
owner
=>
'root'
,
group
=>
'root'
,
mode
=>
'0644'
,
}
file
{
$nginx::params::nx_conf_dir:
ensure
=>
directory
,
}
file
{
"${nginx::params::nx_conf_dir}/conf.d"
:
ensure
=>
directory
,
}
if
$confd_purge
==
true
{
File
[
"${nginx::params::nx_conf_dir}/conf.d"
]
{
purge
=>
true
,
recurse
=>
true
,
}
}
file
{
"${nginx::params::nx_conf_dir}/conf.mail.d"
:
ensure
=>
directory
,
}
if
$confd_purge
==
true
{
File
[
"${nginx::params::nx_conf_dir}/conf.mail.d"
]
{
purge
=>
true
,
recurse
=>
true
,
}
}
file
{
"${nginx::params::nx_conf_dir}/conf.d/vhost_autogen.conf"
:
ensure
=>
absent
,
}
file
{
"${nginx::params::nx_conf_dir}/conf.mail.d/vhost_autogen.conf"
:
ensure
=>
absent
,
}
file
{
$nginx::config::nx_run_dir:
ensure
=>
directory
,
}
file
{
$nginx::config::nx_client_body_temp_path:
ensure
=>
directory
,
owner
=>
$nginx::params::nx_daemon_user,
}
file
{
$nginx::config::nx_proxy_temp_path:
ensure
=>
directory
,
owner
=>
$nginx::params::nx_daemon_user,
}
file
{
"${nginx::params::nx_conf_dir}/sites-available"
:
ensure
=>
directory
,
}
if
$vhost_purge
==
true
{
File
[
"${nginx::params::nx_conf_dir}/sites-available"
]
{
purge
=>
true
,
recurse
=>
true
,
}
}
file
{
"${nginx::params::nx_conf_dir}/sites-enabled"
:
ensure
=>
directory
,
}
if
$vhost_purge
==
true
{
File
[
"${nginx::params::nx_conf_dir}/sites-enabled"
]
{
purge
=>
true
,
recurse
=>
true
,
}
}
file
{
'/etc/nginx/sites-enabled/default'
:
ensure
=>
absent
,
}
file
{
"${nginx::params::nx_conf_dir}/nginx.conf"
:
ensure
=>
file
,
content
=>
template
(
$conf_template),
}
file
{
"${nginx::params::nx_conf_dir}/conf.d/proxy.conf"
:
ensure
=>
file
,
content
=>
template
(
$proxy_conf_template),
}
file
{
"${nginx::params::nx_conf_dir}/conf.d/default.conf"
:
ensure
=>
absent
,
}
file
{
"${nginx::params::nx_conf_dir}/conf.d/example_ssl.conf"
:
ensure
=>
absent
,
}
file
{
"${nginx::config::nx_temp_dir}/nginx.d"
:
ensure
=>
absent
,
purge
=>
true
,
recurse
=>
true
,
force
=>
true
,
}
file
{
"${nginx::config::nx_temp_dir}/nginx.mail.d"
:
ensure
=>
absent
,
purge
=>
true
,
recurse
=>
true
,
force
=>
true
,
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 4 2025, 6:50 PM (12 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3398815
Attached To
rSPNGX Puppet NGINX management module
Event Timeline
Log In to Comment