Browse Source

fix(apache-2.4.config.jinja): fix `salt-lint` errors

```bash
Examining apache/files/FreeBSD/apache-2.4.config.jinja of type state
[201] Trailing whitespace
apache/files/FreeBSD/apache-2.4.config.jinja:171
```
tags/v0.38.0
Imran Iqbal 5 years ago
parent
commit
e2c1c2e66f
No account linked to committer's email address
1 changed files with 16 additions and 16 deletions
  1. +16
    -16
      apache/files/FreeBSD/apache-2.4.config.jinja

+ 16
- 16
apache/files/FreeBSD/apache-2.4.config.jinja View File

# This is the main Apache HTTP server configuration file. It contains the # This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions. # configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive. # for a discussion of each configuration directive.
# #
# Do NOT simply read the instructions in here without understanding # Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure # what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# consult the online docs. You have been warned.
# #
# Configuration and logfile names: If the filenames you specify for many # Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the # of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin # server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/access_log" # with "/", the value of ServerRoot is prepended -- so "logs/access_log"
# with ServerRoot set to "/usr/local/apache2" will be interpreted by the # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
# will be interpreted as '/logs/access_log'. # will be interpreted as '/logs/access_log'.


# #


# Third party modules # Third party modules
IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf
Include {{ apache.portsfile }} Include {{ apache.portsfile }}


<IfModule unixd_module> <IfModule unixd_module>
# #
# If you wish httpd to run as a different user or group, you must run # If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# httpd as root initially and it will switch.
# #
# User/Group: The name (or #number) of the user/group to run httpd as. # User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for # It is usually good practice to create a dedicated user and group for


# #
# Deny access to the entirety of your server's filesystem. You must # Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# explicitly permit access to web content directories in other
# <Directory> blocks below. # <Directory> blocks below.
# #
<Directory /> <Directory />
</IfModule> </IfModule>


# #
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
# #
<Files ".ht*"> <Files ".ht*">
Require all denied Require all denied


<IfModule alias_module> <IfModule alias_module>
# #
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location. # will make a new request for the document at its new location.
# Example: # Example:
# Redirect permanent /foo http://www.example.com/bar # Redirect permanent /foo http://www.example.com/bar
# the filesystem path. # the filesystem path.


# #
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that # ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and # documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the # run by the server when requested rather than as documents sent to the
#MaxRanges unlimited #MaxRanges unlimited


# #
# EnableMMAP and EnableSendfile: On systems that support it,
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall may be used to deliver # memory-mapping or the sendfile syscall may be used to deliver
# files. This usually improves server performance, but must # files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise # filesystems or if support for these functions is otherwise
# broken on your system. # broken on your system.
# Defaults: EnableMMAP On, EnableSendfile Off # Defaults: EnableMMAP On, EnableSendfile Off


# Supplemental configuration # Supplemental configuration
# #
# The configuration files in the etc/apache24/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# The configuration files in the etc/apache24/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary. # necessary.


# Server-pool management (MPM specific) # Server-pool management (MPM specific)

Loading…
Cancel
Save