apache2.yml 3.0 KB

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