Guest User

Untitled

a guest
Mar 16th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. name: drupal-8x
  2. recipe: drupal8
  3. config:
  4. webroot: web
  5. # Get nice URL's
  6. proxy:
  7. mailhog:
  8. - mail.drupal8.lndo.site
  9. pma:
  10. - pma.drupal8.lndo.site
  11. services:
  12. # CiviCRM database
  13. civicrm_db:
  14. type: mysql
  15. creds:
  16. user: civicrm
  17. password: civicrm
  18. database: civicrm
  19. # Drupal 7 database
  20. drupal7_db:
  21. type: mysql
  22. creds:
  23. user: drupal7
  24. password: drupal7
  25. database: drupal7
  26. # MailHog
  27. mailhog:
  28. # Use the latest mailhog version
  29. type: mailhog
  30. # List of services that we want to capture mail from
  31. # You can run `lando info` to get a list of services that are available
  32. # Mailhog expects that these services will be php services
  33. hogfrom:
  34. - appserver
  35. # Optionally allow access to the smtp service at localhost:1026
  36. # You will need to make sure port 1026 is open on your machine
  37. #
  38. # You can also set `portforward: true` to have Lando dynamically assign
  39. # an open port. Unlike specifying an actual port setting this to true will give you
  40. # a different port every time you restart your app
  41. portforward: 1026
  42. # PhpMyAdmin
  43. pma:
  44. type: phpmyadmin
  45. hosts:
  46. - database
  47. - civicrm_db
  48. - drupal7_db
  49. # Add a lando vim command
  50. tooling:
  51. vim:
  52. service: appserver
Add Comment
Please, Sign In to add comment