apache2.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. - name: 'Install Apache2 packages'
  2. apt:
  3. pkg: 'apache2'
  4. state: 'installed'
  5. - name: 'Install logrotate configuration for Apache'
  6. template:
  7. src: 'logrotate/apache2.j2'
  8. dest: '/etc/logrotate.d/apache2'
  9. owner: 'root'
  10. group: 'root'
  11. mode: '0644'
  12. - name: 'Install SSL vhost configuration for Apache'
  13. template:
  14. src: 'apache2/vhost_ssl.j2'
  15. dest: '/etc/apache2/vhost_ssl-{{ item }}.conf'
  16. owner: 'root'
  17. group: 'root'
  18. mode: '0644'
  19. with_items: '{{ ssl_certs }}'
  20. notify:
  21. - 'Reload apache2'
  22. when: ssl_certs
  23. - name: 'Install Apache2 basic security configuration (Debian < 8)'
  24. template:
  25. src: 'apache2/conf.d/security.j2'
  26. dest: '/etc/apache2/conf.d/security'
  27. owner: 'root'
  28. group: 'root'
  29. mode: '0644'
  30. notify:
  31. - 'Reload apache2'
  32. when: ansible_lsb.major_release|int < 8
  33. - name: 'Install Apache2 basic security configuration (Debian >= 8)'
  34. template:
  35. src: 'apache2/conf.d/security.j2'
  36. dest: '/etc/apache2/conf-available/security.conf'
  37. owner: 'root'
  38. group: 'root'
  39. mode: '0644'
  40. notify:
  41. - 'Reload apache2'
  42. when: ansible_lsb.major_release|int >= 8
  43. - name: 'Create basic authentication file for admin (Apache2)'
  44. template:
  45. src: 'apache2/auth_admin.j2'
  46. dest: '/etc/apache2/auth_admin'
  47. owner: 'root'
  48. group: 'www-data'
  49. mode: '0640'
  50. - name: 'Install PHPMyAdmin virtual host for Apache2 (sites-available)'
  51. template:
  52. src: 'apache2/pma_vhost.j2'
  53. dest: '/etc/apache2/sites-available/pma.conf'
  54. owner: 'root'
  55. group: 'root'
  56. mode: '0644'
  57. notify:
  58. - 'Reload apache2'
  59. when: with_phpmyadmin
  60. - name: 'Install PHPMyAdmin virtual host for Apache2 (sites-enabled)'
  61. file:
  62. src: '/etc/apache2/sites-available/pma.conf'
  63. path: '/etc/apache2/sites-enabled/pma.conf'
  64. state: 'link'
  65. notify:
  66. - 'Reload apache2'
  67. when: with_phpmyadmin
  68. - name: "Install PHPPgAdmin virtual host for Apache2 (sites-available)"
  69. template:
  70. src: 'apache2/pga_vhost.j2'
  71. dest: '/etc/apache2/sites-available/pga.conf'
  72. owner: 'root'
  73. group: 'root'
  74. mode: '0644'
  75. notify:
  76. - 'Reload apache2'
  77. when: with_phppgadmin
  78. - name: 'Install PHPPgAdmin virtual host for Apache2 (sites-enabled)'
  79. file:
  80. src: '/etc/apache2/sites-available/pga.conf'
  81. path: '/etc/apache2/sites-enabled/pga.conf'
  82. state: 'link'
  83. notify:
  84. - 'Reload apache2'
  85. when: with_phppgadmin
  86. - name: 'Install PHP system checks virtual host for Apache2 (sites-available)'
  87. template:
  88. src: 'apache2/sys_vhost.j2'
  89. dest: '/etc/apache2/sites-available/sys.conf'
  90. owner: 'root'
  91. group: 'root'
  92. mode: '0644'
  93. notify:
  94. - 'Reload apache2'
  95. when: with_php
  96. - name: 'Install PHP system checks virtual host for Apache2 (sites-enabled)'
  97. file:
  98. src: '/etc/apache2/sites-available/sys.conf'
  99. path: '/etc/apache2/sites-enabled/sys.conf'
  100. state: 'link'
  101. notify:
  102. - 'Reload apache2'
  103. when: with_php
  104. - name: 'Ensure apache2 is running'
  105. service:
  106. name: 'apache2'
  107. state: 'started'