소스 검색

Merge pull request #117 from opdude/feature/remove-vhost

Added the ability to remove the vhost file from debian
tags/v0.37.4
Wolodja Wentland 8 년 전
부모
커밋
c35f25e0cc
2개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      README.rst
  2. +16
    -0
      apache/no_default.sls

+ 5
- 0
README.rst 파일 보기

@@ -101,6 +101,11 @@ Enables and configures the Apache module mod_remoteip using data from Pillar. (D

Replace default vhost with own version. By default, it's 503 code. (Debian Only)

``apache.no_default_vhost``
--------------------------

Remove the default vhost. (Debian Only)

``apache.vhosts.standard``
--------------------------


+ 16
- 0
apache/no_default.sls 파일 보기

@@ -0,0 +1,16 @@
{% if grains['os_family']=="Debian" %}

{% from "apache/map.jinja" import apache with context %}

include:
- apache

apache_no-default-vhost:
file.absent:
- name: {{ apache.vhostdir }}/000-default.conf
- require:
- pkg: apache
- watch_in:
- module: apache-reload

{% endif %}

Loading…
취소
저장