You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
849 B

  1. ---
  2. app_username: vagrant
  3. pip_requirements_filename: requirements-dev.txt
  4. ini_file: development.ini
  5. gunicorn_args: --reload
  6. # have to disable sendfile for vagrant due to a virtualbox bug
  7. nginx_enable_sendfile: false
  8. nginx_worker_processes: 1
  9. nginx_enable_hsts: false
  10. nginx_enable_csp: false
  11. postgresql_tildes_databases:
  12. - tildes
  13. - tildes_test
  14. postgresql_tildes_user_flags: "SUPERUSER"
  15. tildes_database_insert_dev_data: true
  16. hsts_max_age: 60
  17. site_hostname: localhost
  18. ssl_cert_dir: /etc/pki/tls/certs
  19. ssl_cert_path: "{{ ssl_cert_dir }}/localhost.crt"
  20. ssl_private_key_path: "{{ ssl_cert_dir }}/localhost.key"
  21. ansible_python_interpreter: /usr/bin/python3
  22. # Workaround for some Ansible permissions issues when becoming an unprivileged user
  23. # (this has some risks, but should be fine for our use)
  24. ansible_shell_allow_world_readable_temp: true