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
```
This commit is contained in:
Imran Iqbal 2019-10-17 07:33:45 +01:00
parent 97f6ead9f4
commit f4045efeff
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819

View File

@ -8,7 +8,7 @@
# #
# 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.
# #
# The configuration directives are grouped into three basic sections: # The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a # 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) ## Server-Pool Size Regulation (MPM specific)
## ##
# prefork MPM # prefork MPM
# StartServers: number of server processes to start # StartServers: number of server processes to start
@ -116,7 +116,7 @@ KeepAliveTimeout 5
<IfModule mpm_worker_module> <IfModule mpm_worker_module>
StartServers 2 StartServers 2
MinSpareThreads 25 MinSpareThreads 25
MaxSpareThreads 75 MaxSpareThreads 75
ThreadLimit 64 ThreadLimit 64
ThreadsPerChild 25 ThreadsPerChild 25
MaxClients 150 MaxClients 150
@ -133,7 +133,7 @@ KeepAliveTimeout 5
<IfModule mpm_event_module> <IfModule mpm_event_module>
StartServers 2 StartServers 2
MinSpareThreads 25 MinSpareThreads 25
MaxSpareThreads 75 MaxSpareThreads 75
ThreadLimit 64 ThreadLimit 64
ThreadsPerChild 25 ThreadsPerChild 25
MaxClients 150 MaxClients 150
@ -153,8 +153,8 @@ Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess AccessFileName .htaccess
# #
# The following lines prevent .htaccess and .htpasswd files from being # The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients. # viewed by Web clients.
# #
<Files ~ "^\.ht"> <Files ~ "^\.ht">
Order allow,deny Order allow,deny