nginx.yml 3.5 KB

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