aboutsummaryrefslogtreecommitdiffstats
path: root/charms/trusty/ceilometer/charmhelpers/contrib/hardening/apache/templates/hardening.conf
blob: 07945418567832170c8fcaa1faee5e2afa2b75ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
###############################################################################
# WARNING: This configuration file is maintained by Juju. Local changes may
#          be overwritten.
###############################################################################

<Location / >
  <LimitExcept {{ allowed_http_methods }} > 
    # http://httpd.apache.org/docs/2.4/upgrading.html
    {% if apache_version > '2.2' -%}
    Require all granted
    {% else -%}
    Order Allow,Deny 
    Deny from all 
    {% endif %}
  </LimitExcept>
</Location>

TraceEnable {{ traceenable }}