소스 검색

Merge pull request #191 from jplock/jp-hostname

Set a ServerName for apache (fixes #187)
Luke Cyca 10 년 전
부모
커밋
2ef34ef1db
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      roles/common/tasks/main.yml
  2. 1
    0
      roles/common/templates/fqdn.j2

+ 4
- 0
roles/common/tasks/main.yml 파일 보기

@@ -43,6 +43,10 @@
43 43
   command: a2enmod headers creates=/etc/apache2/mods-enabled/headers.load
44 44
   notify: restart apache
45 45
 
46
+- name: Set ServerName for Apache
47
+  template: src=fqdn.j2 dest=/etc/apache2/conf.d/fqdn
48
+  notify: restart apache
49
+
46 50
 - include: encfs.yml tags=encfs
47 51
 - include: users.yml tags=users
48 52
 - include: ssl.yml tags=ssl

+ 1
- 0
roles/common/templates/fqdn.j2 파일 보기

@@ -0,0 +1 @@
1
+ServerName {{ domain }}

Loading…
취소
저장