si.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. - hosts: si-demo-server
  2. sudo: yes
  3. vars:
  4. # public host name users will use to access Coin
  5. public_fqdn: "coin.example.org"
  6. # directory where configuration templates are stored
  7. custom_coin_files_directory: "coin-customizations"
  8. # unix user who will run app server
  9. user_name: "coin"
  10. # PostgreSQL database name
  11. db_name: "illyse_coin"
  12. # PostgreSQL user name
  13. db_user: "illyse_coin"
  14. # PostgreSQL password
  15. db_password: "illyse_coin_change_me"
  16. # PostgreSQL address
  17. db_host: "localhost"
  18. # PostgreSQL port
  19. db_port: "5432"
  20. # Gunicorn server binding address (address on which the process will listen)
  21. gunicorn_binding_address: "127.0.0.1"
  22. # Gunicorn server listening port
  23. gunicorn_port: "3036"
  24. # Path of the directory where statics assets will be stored (and served by web server)
  25. www_static_assets_directory: "/var/www/coin/static"
  26. # Enable or disable configuration of lighttpd as reverse proxy
  27. lighttpd_enabled: "true"
  28. user_home: "/home/{{user_name}}"
  29. user_logs_dir: "{{ user_home }}/logs"
  30. working_directory: "{{user_home}}/coin"
  31. virtualenv_directory: "{{user_home}}/venv"
  32. supervisor_tasks_conf_directory: "/etc/supervisor/conf.d/"
  33. lighttpd_log_file: "/var/log/lighttpd/si-coin-django.log"
  34. www_user: "www-data"
  35. tasks:
  36. # Setup: prerequisites
  37. # note: we put postgresql as needed, but Coin can work with other backends supported by Coin.
  38. # as an example, SQLite is known to work
  39. - name: prerequisites are installed
  40. apt: pkg=git-core,python-dev,python-pip,libldap2-dev,libpq-dev,libsasl2-dev,python-virtualenv,postgresql,postgresql-server-dev-9.1,python-psycopg2,supervisor
  41. state=installed
  42. # Setup: PostgreSQL
  43. - name: create postgres user "{{ db_user }}"
  44. postgresql_user: name={{ db_user }} password={{ db_password }}
  45. sudo_user: postgres
  46. - name: create postgres db "{{ db_name }}"
  47. postgresql_db: name={{ db_name }} encoding="UTF-8" lc_collate='fr_FR.UTF-8' lc_ctype='fr_FR.UTF-8' template=template0
  48. sudo_user: postgres
  49. - name: local socket authentication via password is allowed
  50. lineinfile: dest=/etc/postgresql/9.1/main/pg_hba.conf line="local {{ db_name }} {{ db_user }} password"
  51. insertafter="^local\s+all\s+postgres\s+peer"
  52. notify: restart_postgres
  53. - meta: flush_handlers
  54. - name: grant all to {{ db_user }} on {{ db_name }}
  55. postgresql_privs: db={{ db_name }} privs=ALL type=database role={{ db_user }}
  56. sudo_user: postgres
  57. # Setup: Coin
  58. - name: create user {{ user_name }}
  59. user: name={{ user_name }} state=present shell=/bin/false createhome=yes
  60. - name: git, get Coin code
  61. git: repo=git://git.illyse.org/coin.git dest={{ working_directory }} version=HEAD accept_hostkey=yes
  62. sudo_user: "{{ user_name }}"
  63. - name: install Coin python requirements
  64. pip: requirements={{ working_directory }}/requirements.txt virtualenv={{ virtualenv_directory }}
  65. sudo_user: "{{ user_name }}"
  66. - name: copy custom Coin settings file
  67. template: src={{ custom_coin_files_directory }}/django_local_settings.py.j2 dest={{ working_directory }}/coin/settings_local.py
  68. owner={{ user_name }} group={{ user_name }}
  69. - name: django migrations are applied
  70. command: "{{ virtualenv_directory }}/bin/python {{ working_directory }}/manage.py migrate"
  71. sudo_user: "{{ user_name }}"
  72. - name: gunicorn is installed
  73. pip: name=gunicorn virtualenv={{ virtualenv_directory }}
  74. sudo_user: "{{ user_name }}"
  75. - name: log directory is present in user's home
  76. file: path={{ user_logs_dir }} state=directory owner={{ user_name }} group={{ user_name }}
  77. - name: wsgi.py is present
  78. template: src={{ custom_coin_files_directory }}/wsgi.py.j2 dest={{ working_directory }}/wsgi.py
  79. owner={{ user_name }} group={{ user_name }}
  80. - name: supervisord config file is present
  81. template: src={{ custom_coin_files_directory }}/supervisor-coin.conf.j2 dest={{ supervisor_tasks_conf_directory }}/supervisor-coin.conf
  82. notify:
  83. - reread_supervisor_config
  84. - restart_coin_supervisor_task
  85. - name: static assets directory exists
  86. file: path={{ www_static_assets_directory }} state=directory
  87. owner={{ www_user }} group={{ user_name }} mode=0774
  88. - name: django collect static assets files
  89. command: "{{ virtualenv_directory }}/bin/python {{ working_directory }}/manage.py collectstatic --noinput"
  90. sudo_user: "{{ user_name }}"
  91. # Configure lighttpd as reverse proxy (only if lighttpd_enabled var is "true")
  92. - name: lighttpd is installed
  93. apt: pkg=lighttpd state=installed
  94. when: lighttpd_enabled == "true"
  95. - name: lighttpd mod proxy is enabled
  96. file: src=/etc/lighttpd/conf-available/10-proxy.conf
  97. dest=/etc/lighttpd/conf-enabled/10-proxy.conf
  98. state=link
  99. notify: restart_lighttpd
  100. when: lighttpd_enabled == "true"
  101. - name: lighttpd mod accesslog is enabled
  102. file: src=/etc/lighttpd/conf-available/10-accesslog.conf
  103. dest=/etc/lighttpd/conf-enabled/10-accesslog.conf
  104. state=link
  105. notify: restart_lighttpd
  106. when: lighttpd_enabled == "true"
  107. - name: lighttpd config file for {{ public_fqdn }} is present
  108. template: src={{ custom_coin_files_directory }}/lighttpd-coin.conf.j2 dest=/etc/lighttpd/conf-available/20-coin.conf
  109. notify: restart_lighttpd
  110. when: lighttpd_enabled == "true"
  111. - name: lighttpd config file for {{ public_fqdn }} is enabled
  112. file: src=/etc/lighttpd/conf-available/20-coin.conf
  113. dest=/etc/lighttpd/conf-enabled/20-coin.conf
  114. state=link
  115. notify: restart_lighttpd
  116. when: lighttpd_enabled == "true"
  117. handlers:
  118. - name: restart_postgres
  119. service: name=postgresql state=reloaded
  120. - name: reread_supervisor_config
  121. supervisorctl: name=coin-si-gunicorn state=present
  122. - name: restart_coin_supervisor_task
  123. supervisorctl: name=coin-si-gunicorn state=restarted
  124. - name: restart_lighttpd
  125. service: name=lighttpd state=restarted