nginx.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. - name: 'Install nginx package'
  2. apt:
  3. pkg: 'nginx'
  4. state: 'installed'
  5. update_cache: 'yes'
  6. - name: 'Install logrotate configuration for nginx'
  7. template:
  8. src: 'logrotate/nginx.j2'
  9. dest: '/etc/logrotate.d/nginx'
  10. owner: 'root'
  11. group: 'root'
  12. mode: '0644'
  13. - name: 'Install nginx default file configuration'
  14. template:
  15. src: 'nginx/default.j2'
  16. dest: '/etc/default/nginx'
  17. owner: 'root'
  18. group: 'root'
  19. mode: '0644'
  20. notify:
  21. - 'Restart nginx'
  22. - name: 'Install custom mime types for nginx'
  23. template:
  24. src: 'nginx/mime.types.custom.j2'
  25. dest: '/etc/nginx/mime.types.custom'
  26. owner: 'root'
  27. group: 'root'
  28. mode: '0644'
  29. notify:
  30. - 'Restart nginx'
  31. - name: 'Install nginx configuration'
  32. template:
  33. src: 'nginx/nginx.conf.j2'
  34. dest: '/etc/nginx/nginx.conf'
  35. owner: 'root'
  36. group: 'root'
  37. mode: '0644'
  38. notify:
  39. - 'Restart nginx'
  40. - name: 'Install additional nginx configuration params (conf.d/)'
  41. template:
  42. src: 'nginx/conf.d/{{ item }}.conf.j2'
  43. dest: '/etc/nginx/conf.d/{{ item }}.conf'
  44. owner: 'root'
  45. group: 'root'
  46. mode: '0644'
  47. with_items:
  48. - 'status'
  49. notify:
  50. - 'Reload nginx'
  51. - name: 'Install additional nginx configuration params (vhost_*)'
  52. template:
  53. src: 'nginx/vhost_{{ item }}.j2'
  54. dest: '/etc/nginx/vhost_{{ item }}'
  55. owner: 'root'
  56. group: 'root'
  57. mode: '0644'
  58. with_items:
  59. - 'all'
  60. - 'expires'
  61. - 'cache-fd'
  62. - 'protect-files'
  63. - 'security'
  64. notify:
  65. - 'Reload nginx'
  66. - name: 'Install SSL vhost configuration for Nginx'
  67. template:
  68. src: 'nginx/vhost_ssl.j2'
  69. dest: '/etc/nginx/vhost_ssl-{{ item }}'
  70. owner: 'root'
  71. group: 'root'
  72. mode: '0644'
  73. with_items: '{{ ssl_certs }}'
  74. notify:
  75. - 'Reload nginx'
  76. when: ssl_certs
  77. - name: 'Create basic authentication file for admin (Nginx)'
  78. template:
  79. src: 'nginx/auth_admin.j2'
  80. dest: '/etc/nginx/auth_admin'
  81. owner: 'root'
  82. group: 'www-data'
  83. mode: '0640'
  84. - name: 'Install PHPMyAdmin virtual host for nginx (sites-available)'
  85. template:
  86. src: 'nginx/pma_vhost.j2'
  87. dest: '/etc/nginx/sites-available/pma'
  88. owner: 'root'
  89. group: 'root'
  90. mode: '0644'
  91. notify:
  92. - 'Reload nginx'
  93. when: with_phpmyadmin
  94. - name: 'Install PHPMyAdmin virtual host for nginx (sites-enabled)'
  95. file:
  96. src: '/etc/nginx/sites-available/pma'
  97. path: '/etc/nginx/sites-enabled/pma'
  98. state: 'link'
  99. notify:
  100. - 'Reload nginx'
  101. when: with_phpmyadmin
  102. - name: 'Install PHPPgAdmin virtual host for nginx (sites-available)'
  103. template:
  104. src: 'nginx/pga_vhost.j2'
  105. dest: '/etc/nginx/sites-available/pga'
  106. owner: 'root'
  107. group: 'root'
  108. mode: '0644'
  109. notify:
  110. - 'Reload nginx'
  111. when: with_phppgadmin
  112. - name: 'Install PHPPgAdmin virtual host for nginx (sites-enabled)'
  113. file:
  114. src: '/etc/nginx/sites-available/pga'
  115. path: '/etc/nginx/sites-enabled/pga'
  116. state: 'link'
  117. notify:
  118. - 'Reload nginx'
  119. when: with_phppgadmin
  120. - name: 'Install PHP system checks virtual host for nginx (sites-available)'
  121. template:
  122. src: 'nginx/sys_vhost.j2'
  123. dest: '/etc/nginx/sites-available/sys'
  124. owner: 'root'
  125. group: 'root'
  126. mode: '0644'
  127. notify:
  128. - 'Reload nginx'
  129. when: with_php
  130. - name: 'Install PHP system checks virtual host for nginx (sites-enabled)'
  131. file:
  132. src: '/etc/nginx/sites-available/sys'
  133. path: '/etc/nginx/sites-enabled/sys'
  134. state: 'link'
  135. notify:
  136. - 'Reload nginx'
  137. when: with_php
  138. - name: 'Ensure nginx is running'
  139. service:
  140. name: 'nginx'
  141. state: 'started'