Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.36 KB | None | 0 0
  1. local:
  2.   vhost: "http://site.dev"
  3.   wordpress_path: "/Users/zach/vagrant-local/www/site/htdocs/" # use an absolute path here
  4.  
  5.   database:
  6.     name: "site"
  7.     user: "external"
  8.     password: "external"
  9.     host: "site.dev"
  10.  
  11. staging:
  12.   vhost: "http://develop.server.url"
  13.   wordpress_path: "/var/www/html/site"
  14.  
  15.   database:
  16.     name: "site"
  17.     user: "site"
  18.     password: "password"
  19.     host: "localhost"
  20.  
  21.   exclude:
  22.    - ".htaccess"
  23.     - ".git/"
  24.     - ".gitignore"
  25.     - ".sass-cache/"
  26.     - "bin/"
  27.     - "tmp/*"
  28.     - "Gemfile*"
  29.     - "Movefile"
  30.     - "wp-config.php"
  31.     - "wp-content/*.sql"
  32.     - "node_modules/"
  33.     - "package.json"
  34.     - "gulpfile.js"
  35.     - "README*"
  36.  
  37.   ssh:
  38.     host: "server_ip"
  39.     user: "site"
  40.     port: 22
  41.     rsync_options: "--verbose"
  42.  
  43. production:
  44.   vhost: "http://site.com"
  45.   wordpress_path: "/home/site/public_html/"
  46.  
  47.   database:
  48.     name: "site_wordpress"
  49.     user: "site_user"
  50.     password: "password"
  51.     host: "localhost"
  52.  
  53.   exclude:
  54.    - ".htaccess"
  55.     - ".git/"
  56.     - ".gitignore"
  57.     - ".sass-cache/"
  58.     - "bin/"
  59.     - "tmp/*"
  60.     - "Gemfile*"
  61.     - "Movefile"
  62.     - "wp-config.php"
  63.     - "wp-content/*.sql"
  64.     - "node_modules/"
  65.     - "package.json"
  66.     - "gulpfile.js"
  67.     - "README*"
  68.  
  69.   ssh:
  70.     host: "server_ip"
  71.     user: "site"
  72.     port: 22
  73.     rsync_options: "--verbose"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement