Skip to content

Instantly share code, notes, and snippets.

@generalredneck
Last active March 8, 2017 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generalredneck/9b490ee220809e7b298a95271060eeab to your computer and use it in GitHub Desktop.
Save generalredneck/9b490ee220809e7b298a95271060eeab to your computer and use it in GitHub Desktop.
Output of drupal-vm when type is nothing
$ vagrant up
Bringing machine 'support.local' up with 'virtualbox' provider...
==> support.local: Checking if box 'geerlingguy/ubuntu1604' is up to date...
==> support.local: Fixed port collision for 22 => 2222. Now on port 2200.
It appears your machine doesn't support NFS, or there is not an
adapter to enable NFS on this machine for Vagrant. Please verify
that `nfsd` is installed on your machine, and try again. If you're
on Windows, NFS isn't supported. If the problem persists, please
contact Vagrant support.
vagrant_hostname: support.local
vagrant_machine_name: support.local
vagrant_ip: 0.0.0.0
vagrant_synced_folders:
# The first synced folder will be used for the default Drupal installation, if
# any of the build_* settings are 'true'. By default the folder is set to
# the drupal-vm folder.
- local_path: ./elccs
destination: /var/www/elccs
type: ""
create: true
build_composer_project: false
build_composer: false
drupal_composer_path: false
drupal_composer_install_dir: "/var/www/drupalvm"
drupal_core_path: "{{ drupal_composer_install_dir }}/docroot"
php_version: "5.6"
php_memory_limit: "512M"
installed_extras:
- adminer
# - blackfire
# - drupalconsole
- drush
# - elasticsearch
# - java
- mailhog
- memcached
# - newrelic
# - nodejs
- pimpmylog
# - redis
# - ruby
# - selenium
- solr
# - upload-progress
- varnish
- xdebug
- xhprof
# MySQL databases and users.
mysql_databases:
- name: "elccs"
encoding: utf8mb4
collation: utf8mb4_general_ci
mysql_users:
- name: "{{ drupal_db_user }}"
host: "%"
password: "{{ drupal_db_password }}"
priv: "elccs.*:ALL"
apache_vhosts:
- servername: "elccs.local"
serveralias: "www.elccs.local"
documentroot: "/var/www/elccs"
extra_parameters: "{{ apache_vhost_php_fpm_parameters }}"
- servername: "adminer.{{ vagrant_hostname }}"
documentroot: "{{ adminer_install_dir }}"
extra_parameters: "{{ apache_vhost_php_fpm_parameters }}"
- servername: "xhprof.{{ vagrant_hostname }}"
documentroot: "{{ php_xhprof_html_dir }}"
extra_parameters: "{{ apache_vhost_php_fpm_parameters }}"
- servername: "pimpmylog.{{ vagrant_hostname }}"
documentroot: "{{ pimpmylog_install_dir }}"
extra_parameters: "{{ apache_vhost_php_fpm_parameters }}"
- servername: "{{ vagrant_ip }}"
serveralias: "dashboard.{{ vagrant_hostname }}"
documentroot: "{{ dashboard_install_dir }}"
extra_parameters: "{{ apache_vhost_php_fpm_parameters }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment