Advertisement
Guest User

Untitled

a guest
Jan 12th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.26 KB | None | 0 0
  1. ---
  2. vagrantfile-local:
  3.     vm:
  4.         box: ubuntu-precise12042-x64-vbox43
  5.         box_url: 'http://box.puphpet.com/ubuntu-precise12042-x64-vbox43.box'
  6.         hostname: null
  7.         network:
  8.             private_network: 192.168.56.101
  9.             forwarded_port:
  10.                 56gjYRh6h8x6:
  11.                     host: '7352'
  12.                     guest: '22'
  13.         provider:
  14.             virtualbox:
  15.                 modifyvm:
  16.                     natdnshostresolver1: on
  17.                     memory: '512'
  18.                 setextradata:
  19.                     VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root: 1
  20.         provision:
  21.             puppet:
  22.                 manifests_path: puphpet/puppet/manifests
  23.                 options:
  24.                    - '--verbose'
  25.                     - '--hiera_config /vagrant/puphpet/puppet/hiera.yaml'
  26.                     - '--parser future'
  27.         synced_folder:
  28.             LZVMwbyqtPLg:
  29.                 id: vagrant-root
  30.                 source: ./
  31.                 target: /var/www
  32.                 nfs: 'false'
  33.         usable_port_range: 2200..2250
  34.     ssh:
  35.         host: null
  36.         port: null
  37.         private_key_path: null
  38.         username: vagrant
  39.         guest_port: null
  40.         keep_alive: true
  41.         forward_agent: false
  42.         forward_x11: false
  43.         shell: 'bash -l'
  44.     vagrant:
  45.         host: ':detect'
  46. server:
  47.     packages: {  }
  48.     dot_files:
  49.        -
  50.             bash_aliases: null
  51.     _prevent_empty: ''
  52. apache:
  53.     modules:
  54.        - php
  55.         - rewrite
  56.     vhosts:
  57.         R1nQO05z1UuF:
  58.             servername: clubsmade.dev
  59.             serveraliases:
  60.                - www.clubsmade.dev
  61.             docroot: /var/www/clubsmade/src/elysium/public
  62.             port: '80'
  63.             setenv:
  64.                - 'APP_ENV dev'
  65.             override:
  66.                - All
  67.     user: www-data
  68.     group: www-data
  69.     default_vhost: true
  70.     mpm_module: prefork
  71.     mod_pagespeed: '1'
  72.     mod_spdy: '1'
  73. php:
  74.     version: '54'
  75.     composer: '1'
  76.     modules:
  77.         php:
  78.            - cli
  79.             - intl
  80.             - mcrypt
  81.             - curl
  82.             - imagick
  83.             - memcached
  84.         pear: {  }
  85.         pecl:
  86.            - pecl_http
  87.             - PDO
  88.     ini:
  89.         display_errors: On
  90.         error_reporting: '-1'
  91.         session.save_path: /var/lib/php/session
  92.     timezone: Europe/Rome
  93. xdebug:
  94.     install: '1'
  95.     settings:
  96.         xdebug.default_enable: '1'
  97.         xdebug.remote_autostart: '0'
  98.         xdebug.remote_connect_back: '1'
  99.         xdebug.remote_enable: '1'
  100.         xdebug.remote_handler: dbgp
  101.         xdebug.remote_port: '9000'
  102. drush:
  103.     install: 0
  104.     settings:
  105.         drush.tag_branch: 6.x
  106. mysql:
  107.     root_password: '123456'
  108.     phpmyadmin: 0
  109.     adminer: '1'
  110.     databases:
  111.         ovHK3LERoqJo:
  112.             grant:
  113.                - ALL
  114.             name: silentf_clubsmade
  115.             host: localhost
  116.             user: clubsmade
  117.             password: 'QEJpKs8efhfdd26P'
  118.             sql_file: ''
  119. beanstalkd:
  120.     install: 0
  121.     listenaddress: 0.0.0.0
  122.     listenport: '13000'
  123.     maxjobsize: '65535'
  124.     maxconnections: '1024'
  125.     binlogdir: /var/lib/beanstalkd/binlog
  126.     binlogfsync: null
  127.     binlogsize: '10485760'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement