apache2.yml 3.0 KB

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