Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. ---
  2. # Application user/group
  3.  
  4. application_user: bspotted
  5. application_group: bspotted
  6.  
  7. # Vagrant settings.
  8. auto_virtualenv: yes
  9. auto_virtualenv_user: bspotted
  10.  
  11. # Git settings.
  12. setup_git_repo: no
  13. setup_bspotted_source: yes
  14. git_branch: master
  15.  
  16.  
  17. # Database settings.
  18. db_host: "localhost"
  19. db_user: "bspotted"
  20. db_name: "bspotted"
  21. db_password: "moOToW8aeLG1i2oNOIXLavMwotwjA0Q5rZHBe6w6"
  22. test_db_name: "test_{{ db_name }}"
  23. create_test_db: yes
  24. db_user_is_superuser: yes
  25.  
  26. # Gunicorn settings. For the number of workers, a good rule to follow is
  27. # 2 x number of CPUs + 1
  28. gunicorn_num_workers: 5
  29.  
  30. # Setting this to 1 will restart the Gunicorn process each time
  31. # you make a request, basically reloading the code. Very handy
  32. # when developing. Set to 0 for unlimited requests (default).
  33. gunicorn_max_requests: 0
  34. gunicorn_timeout_seconds: 300
  35. gunicorn_use_reload: yes
  36. server_user: "{{ application_user }}"
  37. server_group: "{{ application_group }}"
  38.  
  39. # Nginx settings.
  40. nginx_server_name: 192.168.33.15
  41. nginx_strong_dh_group: no
  42. nginx_host_static_files: yes
  43. nginx_disable_sendfile: yes
  44.  
  45. # RabbitMQ settings.
  46. rabbitmq_server_name: localhost
  47. rabbitmq_server_port: 5672
  48.  
  49. rabbitmq_admin_user: admin
  50. rabbitmq_admin_password: "XPWwSfqk8@F"
  51.  
  52. rabbitmq_application_vhost: bspotted.net
  53. rabbitmq_application_user: "{{ application_name }}"
  54. rabbitmq_application_password: "WYJSn44cRrC3"
  55.  
  56. # memcached settings
  57. memcached_host: "37.252.250.166"
  58. memcached_port: 11211
  59.  
  60. # throttling
  61. throttling_enabled: 0
  62.  
  63. # Celery settings.
  64. celery_num_workers: 5
  65. flower_admin_password: passsword
  66.  
  67. # Application settings.
  68. django_log_level: "INFO"
  69. django_settings_file: "bspotted1.settings"
  70. django_secret_key: 'vcc)1zgpf=-@&8htqo_j*nxejme+2^t!ky@y6bo=6%0*a37g@&'
  71. django_debug: False
  72. debug_toolbar_disabled: False
  73. demo_enabled: True
  74. link_media_path: yes
  75. media_source_path: "{{ server_path }}/static_in_pro/media_root/"
  76. broker_url: "amqp://{{ rabbitmq_application_user }}:{{ rabbitmq_application_password }}@{{ rabbitmq_server_name }}:{{rabbitmq_server_port}}/{{ rabbitmq_application_vhost }}"
  77. email_filtering_enabled: 1
  78. raven_enabled: 0
  79. raven_dsn: ""
  80.  
  81.  
  82. populate_super_user: no
  83. run_django_db_migrations: yes
  84. run_django_collectstatic: yes
  85. run_sync_django_roles_and_permissions: yes
  86. run_sync_insurance_types: yes
  87. run_sync_carriers: yes
  88. run_assign_carriers_to_carrier_forms: yes
  89. run_update_forms: yes
  90. run_db_restore: yes
  91.  
  92. ## api search key
  93. #facebook_search_key: 823b9fcf80a4e3b9462b7b7bb202f82d
  94. #foursquare_search_key: X3DZMW5GMPWDVSG41CMB4JMBXBVT4BIILZOTDJAALX2CIEEG
  95. #osm_search_key:
  96. #here_search_key:
  97. #yelp_search_key: z1wmHhM1xYW6CQxT9XiLAmakI4cl1zKNFh-ZH4YTCu0Nt-EAAwD1r1tNCA-ZTTftz8Q6VVSQ-knP12lq1ebC6Hi0mXqOI39IUb_GjTPSU82bN9kFcnoFbmce6zVnWnYx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement