Browse Source

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

```bash
Examining apache/files/Debian/apache-2.2.config.jinja of type state
[201] Trailing whitespace
apache/files/Debian/apache-2.2.config.jinja:119
    MaxSpareThreads      75

[201] Trailing whitespace
apache/files/Debian/apache-2.2.config.jinja:136
    MaxSpareThreads      75
```
tags/v0.38.0
Imran Iqbal 5 years ago
parent
commit
f4045efeff
No account linked to committer's email address
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      apache/files/Debian/apache-2.2.config.jinja

+ 6
- 6
apache/files/Debian/apache-2.2.config.jinja View File

@@ -8,7 +8,7 @@
#
# 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
# consult the online docs. You have been warned.
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
@@ -87,7 +87,7 @@ KeepAliveTimeout 5

##
## Server-Pool Size Regulation (MPM specific)
##
##

# prefork MPM
# StartServers: number of server processes to start
@@ -116,7 +116,7 @@ KeepAliveTimeout 5
<IfModule mpm_worker_module>
StartServers 2
MinSpareThreads 25
MaxSpareThreads 75
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxClients 150
@@ -133,7 +133,7 @@ KeepAliveTimeout 5
<IfModule mpm_event_module>
StartServers 2
MinSpareThreads 25
MaxSpareThreads 75
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxClients 150
@@ -153,8 +153,8 @@ Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess

#
# 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">
Order allow,deny

Loading…
Cancel
Save