nginx.yml 3.3 KB

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