Saltstack Official Apache Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
234B

  1. <Location "/server-status">
  2. SetHandler server-status
  3. {%- if apache.version == '2.4' %}
  4. Require local
  5. {%- elif apache.version == '2.2' %}
  6. Order deny,allow
  7. Deny from all
  8. Allow from localhost
  9. {%- endif %}
  10. </Location>