Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. local:
  2. vhost: "YOUR_LOCAL_DOMAIN"
  3. wordpress_path: "ABSOLUTE_PATH_TO_" # use an absolute path here
  4.  
  5. database:
  6. name: "LOCAL_DB_NAME"
  7. user: "LOCAL_DB_USERNAME"
  8. password: "LOCAL_DB_PASSWORD"
  9. host: "127.0.0.1"
  10.  
  11. staging:
  12. vhost: "REMOTE_HOST"
  13. wordpress_path: "REMOTE_PATH_ABSOLUTE" # use an absolute path here
  14.  
  15. database:
  16. name: "STAGING_DB_NAME"
  17. user: "STAGING_DB_USER"
  18. password: "STAGING_DB_PASSWORD"
  19. host: "127.0.0.1"
  20. # port: "3308" # Use just in case you have exotic server config
  21.  
  22. exclude:
  23. - "oldsite"
  24. - ".git/"
  25. - ".gitignore"
  26. - ".sass-cache/"
  27. - "env_local"
  28. - "node_modules/"
  29. - "bower_components/"
  30. - "scss/"
  31. - "gulpfile.js"
  32. - "package.json"
  33. - "bower.json"
  34. - ".bowerrc"
  35. - "local/"
  36. - ".codekit-cache/"
  37. - "node_modules/"
  38. - "twentyfifteen/"
  39. - "twentyfourteen/"
  40. - "twentysixteen/"
  41. - "maps/"
  42. - "advanced-cache.php"
  43. - "db.php"
  44. - "cache/"
  45. - "w3tc-config/"
  46. - "w3-total-cache/"
  47. - ".DS_Store"
  48. - "template-demo.php"
  49. - "config.codekit"
  50. - "**.css.map**"
  51. - "bin/"
  52. - "tmp/*"
  53. - "Gemfile*"
  54. - "Movefile"
  55. - "error_log"
  56. - ".htaccess"
  57. - "src/"
  58. - "sass/"
  59. - "*.bak"
  60. - "wp-config.php"
  61. - "wp-content/*.sql"
  62.  
  63. ssh:
  64. host: "SSH_HOST"
  65. user: "SSH_USER"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement