added all file controls
This commit is contained in:
@@ -37,7 +37,7 @@ $ae_user_shell = '/bin/false',
|
|||||||
# configuration files
|
# configuration files
|
||||||
$ae_manage_cfg = false,
|
$ae_manage_cfg = false,
|
||||||
$ae_manage_dirs = true,
|
$ae_manage_dirs = true,
|
||||||
|
$ae_allow_user_dirs = false,
|
||||||
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
@@ -74,6 +74,9 @@ $ae_magic_file_erb = 'cd_apache/magic.erb'
|
|||||||
$ae_ssl_file = "${ae_conf_d_dir}/ssl.conf"
|
$ae_ssl_file = "${ae_conf_d_dir}/ssl.conf"
|
||||||
$ae_ssl_file_erb = 'cd_apache/ssl_conf.erb'
|
$ae_ssl_file_erb = 'cd_apache/ssl_conf.erb'
|
||||||
$ae_autoindex_file = "${ae_conf_d_dir}/autoindex.conf"
|
$ae_autoindex_file = "${ae_conf_d_dir}/autoindex.conf"
|
||||||
|
$ae_autoindex_erb = 'cd_apache/autoindex_conf.erb'
|
||||||
|
$ae_userdir_file = "${ae_conf_d_dir}/userdir.conf"
|
||||||
|
$ae_userdir_erb = 'cd_apache/userdir_conf.erb'
|
||||||
|
|
||||||
# includes must be last
|
# includes must be last
|
||||||
|
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ class cd_apache::server::files (
|
|||||||
|
|
||||||
# manage magic file
|
# manage magic file
|
||||||
|
|
||||||
file { $ae_magic_file:
|
file { $ae_magic_file:
|
||||||
ensure => file,
|
ensure => file,
|
||||||
path => $ae_magic_file,
|
path => $ae_magic_file,
|
||||||
owner => 'root',
|
owner => 'root',
|
||||||
@@ -64,7 +64,7 @@ class cd_apache::server::files (
|
|||||||
|
|
||||||
# manage main ssl config file
|
# manage main ssl config file
|
||||||
|
|
||||||
file { $ae_ssl_file:
|
file { $ae_ssl_file:
|
||||||
ensure => file,
|
ensure => file,
|
||||||
path => $ae_ssl_file,
|
path => $ae_ssl_file,
|
||||||
owner => 'root',
|
owner => 'root',
|
||||||
@@ -78,4 +78,39 @@ class cd_apache::server::files (
|
|||||||
notify => Service['httpd'],
|
notify => Service['httpd'],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# manage autoindex.conf
|
||||||
|
|
||||||
|
file { $ae_autoindex_file:
|
||||||
|
ensure => file,
|
||||||
|
path => $ae_autoindex_file,
|
||||||
|
owner => 'root',
|
||||||
|
group => 'root',
|
||||||
|
mode => '0644',
|
||||||
|
selrange => s0,
|
||||||
|
selrole => object_r,
|
||||||
|
seltype => httpd_config_t,
|
||||||
|
seluser => system_u,
|
||||||
|
content => template($ae_autoindex_erb),
|
||||||
|
notify => Service['httpd'],
|
||||||
|
}
|
||||||
|
|
||||||
|
if $ae_allow_user_dirs == true {
|
||||||
|
|
||||||
|
# manage userdir.conf
|
||||||
|
|
||||||
|
file { $ae_userdir_file:
|
||||||
|
ensure => file,
|
||||||
|
path => $ae_userdir_file,
|
||||||
|
owner => 'root',
|
||||||
|
group => 'root',
|
||||||
|
mode => '0644',
|
||||||
|
selrange => s0,
|
||||||
|
selrole => object_r,
|
||||||
|
seltype => httpd_config_t,
|
||||||
|
seluser => system_u,
|
||||||
|
content => template($ae_userdir_erb),
|
||||||
|
notify => Service['httpd'],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
#
|
################################################################################
|
||||||
|
## autoindex.conf generated by puppet - manual changed will be overwritten ##
|
||||||
|
################################################################################
|
||||||
|
########## full reference file is available under ###########
|
||||||
|
##### https://confdroid.com/2017/06/apache-autoindex-conf-v-2-4/ #####
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Directives controlling the display of server-generated directory listings.
|
# Directives controlling the display of server-generated directory listings.
|
||||||
#
|
#
|
||||||
# Required modules: mod_authz_core, mod_authz_host,
|
# Required modules: mod_authz_core, mod_authz_host,
|
||||||
@@ -82,7 +88,7 @@ DefaultIcon /icons/unknown.gif
|
|||||||
# default, and append to directory listings.
|
# default, and append to directory listings.
|
||||||
#
|
#
|
||||||
# HeaderName is the name of a file which should be prepended to
|
# HeaderName is the name of a file which should be prepended to
|
||||||
# directory indexes.
|
# directory indexes.
|
||||||
ReadmeName README.html
|
ReadmeName README.html
|
||||||
HeaderName HEADER.html
|
HeaderName HEADER.html
|
||||||
|
|
||||||
@@ -91,4 +97,3 @@ HeaderName HEADER.html
|
|||||||
# and not include in the listing. Shell-style wildcarding is permitted.
|
# and not include in the listing. Shell-style wildcarding is permitted.
|
||||||
#
|
#
|
||||||
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
|
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
################################################################################
|
||||||
|
## magic file generated by puppet - manual changed will be overwritten ##
|
||||||
|
################################################################################
|
||||||
|
########## full reference file is available under ###########
|
||||||
|
########## https://confdroid.com/2017/06/apache-magic-v-2-4/ ###########
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# Magic data for mod_mime_magic Apache module (originally for file(1) command)
|
# Magic data for mod_mime_magic Apache module (originally for file(1) command)
|
||||||
# The module is described in /manual/mod/mod_mime_magic.html
|
# The module is described in /manual/mod/mod_mime_magic.html
|
||||||
#
|
#
|
||||||
@@ -43,7 +50,7 @@
|
|||||||
# DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
|
# DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
|
||||||
# that uses little-endian encoding and has a different magic number
|
# that uses little-endian encoding and has a different magic number
|
||||||
# (0x0064732E in little-endian encoding).
|
# (0x0064732E in little-endian encoding).
|
||||||
0 lelong 0x0064732E
|
0 lelong 0x0064732E
|
||||||
>12 lelong 1 audio/x-dec-basic
|
>12 lelong 1 audio/x-dec-basic
|
||||||
>12 lelong 2 audio/x-dec-basic
|
>12 lelong 2 audio/x-dec-basic
|
||||||
>12 lelong 3 audio/x-dec-basic
|
>12 lelong 3 audio/x-dec-basic
|
||||||
@@ -56,23 +63,23 @@
|
|||||||
|
|
||||||
# Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
|
# Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
|
||||||
# AIFF audio data
|
# AIFF audio data
|
||||||
8 string AIFF audio/x-aiff
|
8 string AIFF audio/x-aiff
|
||||||
# AIFF-C audio data
|
# AIFF-C audio data
|
||||||
8 string AIFC audio/x-aiff
|
8 string AIFC audio/x-aiff
|
||||||
# IFF/8SVX audio data
|
# IFF/8SVX audio data
|
||||||
8 string 8SVX audio/x-aiff
|
8 string 8SVX audio/x-aiff
|
||||||
|
|
||||||
# Creative Labs AUDIO stuff
|
# Creative Labs AUDIO stuff
|
||||||
# Standard MIDI data
|
# Standard MIDI data
|
||||||
0 string MThd audio/unknown
|
0 string MThd audio/unknown
|
||||||
#>9 byte >0 (format %d)
|
#>9 byte >0 (format %d)
|
||||||
#>11 byte >1 using %d channels
|
#>11 byte >1 using %d channels
|
||||||
# Creative Music (CMF) data
|
# Creative Music (CMF) data
|
||||||
0 string CTMF audio/unknown
|
0 string CTMF audio/unknown
|
||||||
# SoundBlaster instrument data
|
# SoundBlaster instrument data
|
||||||
0 string SBI audio/unknown
|
0 string SBI audio/unknown
|
||||||
# Creative Labs voice data
|
# Creative Labs voice data
|
||||||
0 string Creative\ Voice\ File audio/unknown
|
0 string Creative\ Voice\ File audio/unknown
|
||||||
## is this next line right? it came this way...
|
## is this next line right? it came this way...
|
||||||
#>19 byte 0x1A
|
#>19 byte 0x1A
|
||||||
#>23 byte >0 - version %d
|
#>23 byte >0 - version %d
|
||||||
@@ -337,7 +344,7 @@
|
|||||||
#0 string \367\203 TeX generic font data
|
#0 string \367\203 TeX generic font data
|
||||||
#0 string \367\131 TeX packed font data
|
#0 string \367\131 TeX packed font data
|
||||||
#0 string \367\312 TeX virtual font data
|
#0 string \367\312 TeX virtual font data
|
||||||
#0 string This\ is\ TeX, TeX transcript text
|
#0 string This\ is\ TeX, TeX transcript text
|
||||||
#0 string This\ is\ METAFONT, METAFONT transcript text
|
#0 string This\ is\ METAFONT, METAFONT transcript text
|
||||||
|
|
||||||
# There is no way to detect TeX Font Metric (*.tfm) files without
|
# There is no way to detect TeX Font Metric (*.tfm) files without
|
||||||
@@ -382,4 +389,3 @@
|
|||||||
# from Apple quicktime file format documentation.
|
# from Apple quicktime file format documentation.
|
||||||
4 string moov video/quicktime
|
4 string moov video/quicktime
|
||||||
4 string mdat video/quicktime
|
4 string mdat video/quicktime
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
##### ssl.conf generated by puppet - manual changed will be overwritten #####
|
##### ssl.conf generated by puppet - manual changed will be overwritten #####
|
||||||
################################################################################
|
################################################################################
|
||||||
|
########## full reference file is available under ###########
|
||||||
|
########## https://confdroid.com/2017/06/apache-ssl-conf-v-2-4/ ###########
|
||||||
|
################################################################################
|
||||||
|
|
||||||
# When we also provide SSL we have to listen to the
|
# When we also provide SSL we have to listen to the
|
||||||
# the HTTPS port in addition.
|
# the HTTPS port in addition.
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
################################################################################
|
||||||
|
## userdir.conf generated by puppet - manual changed will be overwritten ##
|
||||||
|
################################################################################
|
||||||
|
########## full reference file is available under ###########
|
||||||
|
##### https://confdroid.com/2017/06/apache-userdir-conf-v-2-4/ ###########
|
||||||
|
################################################################################
|
||||||
|
|
||||||
#
|
#
|
||||||
# UserDir: The name of the directory that is appended onto a user's home
|
# UserDir: The name of the directory that is appended onto a user's home
|
||||||
# directory if a ~user request is received.
|
# directory if a ~user request is received.
|
||||||
@@ -20,7 +27,7 @@
|
|||||||
# To enable requests to /~user/ to serve the user's public_html
|
# To enable requests to /~user/ to serve the user's public_html
|
||||||
# directory, remove the "UserDir disabled" line above, and uncomment
|
# directory, remove the "UserDir disabled" line above, and uncomment
|
||||||
# the following line instead:
|
# the following line instead:
|
||||||
#
|
#
|
||||||
#UserDir public_html
|
#UserDir public_html
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
@@ -33,4 +40,3 @@
|
|||||||
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
||||||
Require method GET POST OPTIONS
|
Require method GET POST OPTIONS
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
Reference in New Issue
Block a user