Created
May 18, 2016 22:00
-
-
Save oxyc/2e36cbb6764b79b70d8d82a5699d9c88 to your computer and use it in GitHub Desktop.
example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# If you need to run multiple instances of Drupal VM, set a unique hostname, | |
# machine name, and IP address for each instance. | |
vagrant_hostname: drupalvm.dev | |
vagrant_machine_name: drupalvm | |
vagrant_ip: 192.168.88.88 | |
# A list of synced folders, with the keys 'local_path', 'destination', and | |
# a 'type' of [nfs|rsync|smb] (leave empty for slow native shares). See | |
# http://docs.drupalvm.com/en/latest/extras/syncing-folders/ for more info. | |
vagrant_synced_folders: | |
# The first synced folder will be used for the default Drupal installation, if | |
# build_makefile: is 'true'. | |
- local_path: ~/Sites/drupalvm | |
destination: /var/www/drupalvm | |
type: nfs | |
create: true | |
# Set this to false if you are using a different site deployment strategy and | |
# would like to configure 'vagrant_synced_folders' and 'apache_vhosts' manually. | |
build_makefile: true | |
drush_makefile_path: "{{ config_dir }}/drupal.make.yml" | |
# Set this to false if you don't need to install drupal (using the drupal_* | |
# settings below), but instead copy down a database (e.g. using drush sql-sync). | |
install_site: true | |
# Settings for building a Drupal site from a makefile (if 'build_makefile:' | |
# is 'true'). | |
drupal_major_version: 8 | |
drupal_core_path: "/var/www/drupalvm/drupal" | |
drupal_domain: "{{ vagrant_hostname }}" | |
drupal_site_name: "Drupal" | |
drupal_install_profile: standard | |
drupal_enable_modules: [ 'devel' ] | |
drupal_account_name: admin | |
drupal_account_pass: admin | |
drupal_mysql_user: drupal | |
drupal_mysql_password: drupal | |
drupal_mysql_database: drupal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment