nginx.yml 3.5 KB

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