Advertisement
Guest User

Untitled

a guest
Jan 8th, 2018
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.62 KB | None | 0 0
  1. ---
  2. # Configuration file
  3. # Change settings here to control how your box is set up.
  4.  
  5. # Git settings
  6. git_name: "Your name"
  7. git_email: "your@email.com"
  8.  
  9. # Welcome page settings
  10. webserver_hostname: 'cp.local'
  11. webserver_hostname_alias: 'www.{{ webserver_hostname }}'
  12. webserver_index_file_folder: 'www/public'
  13.  
  14. default_remote_user: "vagrant"
  15.  
  16. # Virtual host settings
  17.  
  18. vhost_alias: cp.local
  19. vhost_path: C:\Users\maksim.kutsayev\Server\Projects\customer-portal\www
  20.  
  21. # Set the type of the virtual host; This can be one of "none", "default", "laravel"
  22. vhost_type: "laravel"
  23. vhost_aliases: sub1.domain.local sub2.domain.local
  24. # If you don't want the database to be created, you can simply remove the next line.
  25. vhost_db: cp
  26. # If you use the "default" vhost type, you can specify the folder where your index.php is located.
  27. # Example: "", "/public", "/www". Please use the slash, when the path is not empty. NO TRAILING SLASH.
  28. vhost_index_file_folder: ""
  29. #vhost_custom_alias: ""
  30.  
  31. # Vagrantfile configuration
  32. boxipaddress: "192.168.200.210"
  33. boxname: "vagrant"
  34.  
  35. username: "vagrant"
  36. # The following 2 variables assume that the username is "vagrant".
  37. # If you change the username, please adjust the variables accordingly.
  38. home_dir: "/home/vagrant"
  39. sites_dir: "/home/vagrant/sites"
  40. provisions_dir: "/home/vagrant/provisions"
  41.  
  42. # Give VM 1/4 of system memory
  43. memory: 2048
  44. # Give VM access to all cpu cores on the host
  45. # To find out the number of cores, run the following commands:
  46. #   Mac: sysctl -n hw.ncpu
  47. #   Linux: nproc
  48. cpus: 2
  49.  
  50. # php.ini settings
  51. php_memory_limit: 512M
  52. php_max_execution_time: 60
  53. php_post_max_size: 100M
  54. php_upload_max_filesize: 100M
  55. php_display_errors: On
  56. php_display_startup_errors: On
  57. php_html_errors: On
  58. php_date_timezone: Pacific/Auckland
  59.  
  60. postgresql_port: 5432
  61. postgresql_root_password: password
  62. postgresql_server_hostname: vagrant
  63. postgresql_dbuser: user
  64. postgresql_dbpass: password
  65.  
  66. #composer settings
  67. composer_path: /usr/local/bin/composer
  68. composer_keep_updated: false
  69. composer_version: ''
  70.  
  71. # The directory where global packages will be installed.
  72. composer_home_path: '~/.composer'
  73. composer_home_owner: root
  74. composer_home_group: root
  75.  
  76. # A list of packages to install globally. See commented examples below for
  77. # usage; the 'release' is optional, and defaults to '@stable'.
  78. composer_global_packages: []
  79.   # - { name: phpunit/phpunit, release: "4.7.x" }
  80.   # - { name: phpunit/phpunit, release: "@stable" }
  81.  
  82. composer_add_to_path: true
  83.  
  84. # GitHub OAuth token (used to help overcome API rate limits).
  85. composer_github_oauth_token: ''
  86.  
  87. #PostgreSQl Settings
  88. postgresql_db_user: user
  89. postgresql_db_password: password
  90.  
  91. # Local hosts file location
  92. # Default location on *nix hosts is '/etc/hosts'
  93. hosts_file_location: "/etc/hosts"
  94.  
  95. # Set the level of verbosity that Ansible will use
  96. # This can be one of "", "v", "vv", "vvv", or "vvvv"
  97. ansible_verbosity: ""
  98.  
  99. #.env file settings
  100. app_env: "local"
  101. app_debug: "true"
  102. app_log_level: "debug"
  103. app_url: "http://cp.local"
  104.  
  105. cache_driver: "file"
  106. session_driver: "file"
  107. queue_driver: "sync"
  108.  
  109. mail_driver: "smtp"
  110. mail_host: "smtp.gmail.com"
  111. mail_port: "465"
  112. mail_username: "leadhub@wm4d.com"
  113. mail_password: "Mpw83!bbw"
  114. mail_encryption: "ssl"
  115.  
  116. google_key: "362646730097-h83gbqdd794oemml2o2f7j1lpedpl8rn.apps.googleusercontent.com"
  117. google_secret: "CZ3vSJMdKQrZGbD07KOlhpoz"
  118. google_redirect_uri: "http://cp.local.com/google/callback"
  119. hubspot_api_key: "28bcf809-3a13-46d2-be91-a33e9c62e2a1"
  120. sendgrid_api_key: "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"
  121. sendgrid_email_domain: "parsemail.customer-qa.solbeg.com"
  122. sentry_dsn: ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement