Saltstack Official Apache Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
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>