Created
February 18, 2014 19:02
-
-
Save adamgoose/9077541 to your computer and use it in GitHub Desktop.
This file contains 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
--- | |
vagrantfile-digital_ocean: | |
vm: | |
box: digital_ocean | |
hostname: hcf | |
network: | |
private_network: 192.168.56.101 | |
forwarded_port: { } | |
provider: | |
digital_ocean: | |
image: 'Ubuntu 13.04 x32' | |
region: 'New York 2' | |
size: 512MB | |
client_id: aeb6a8a8bbc8316b305d65f1ec49b4af | |
api_key: a7f0cfeaa2dfe1e9cd93496d058969e1 | |
provision: | |
puppet: | |
manifests_path: puphpet/puppet | |
manifest_file: manifest.pp | |
options: | |
- '--verbose' | |
- '--hiera_config /vagrant/puphpet/puppet/hiera.yaml' | |
- '--parser future' | |
synced_folder: { } | |
ssh: | |
host: null | |
port: null | |
private_key_path: ~/.ssh/id_rsa | |
username: adam | |
guest_port: null | |
keep_alive: true | |
forward_agent: false | |
forward_x11: false | |
shell: 'bash -l' | |
vagrant: | |
host: detect | |
server: | |
packages: | |
- nano | |
- libxrender1 | |
- libfontconfig1 | |
dot_files: | |
- | |
bash_aliases: null | |
_prevent_empty: '' | |
mailcatcher: | |
install: 0 | |
settings: | |
smtp_ip: 0.0.0.0 | |
smtp_port: 1025 | |
http_ip: 0.0.0.0 | |
http_port: '1080' | |
path: /usr/local/bin | |
log: /var/log/mailcatcher/mailcatcher.log | |
nginx: | |
vhosts: | |
WLPAS7CNHCQ9: | |
server_name: hcf.dev | |
server_aliases: | |
- www.hcf.dev | |
www_root: /var/www/hcf/public | |
listen_port: '80' | |
index_files: | |
- index.html | |
- index.htm | |
- index.php | |
envvars: | |
- 'APP_ENV dev' | |
php: | |
version: '54' | |
composer: '1' | |
modules: | |
php: | |
- cli | |
- intl | |
- mcrypt | |
- curl | |
pear: { } | |
pecl: | |
- pecl_http | |
ini: | |
display_errors: On | |
error_reporting: '-1' | |
session.save_path: /var/lib/php/session | |
timezone: America/Chicago | |
xdebug: | |
install: '1' | |
settings: | |
xdebug.default_enable: '1' | |
xdebug.remote_autostart: '0' | |
xdebug.remote_connect_back: '1' | |
xdebug.remote_enable: '1' | |
xdebug.remote_handler: dbgp | |
xdebug.remote_port: '9000' | |
drush: | |
install: 0 | |
settings: | |
drush.tag_branch: 6.x | |
mysql: | |
root_password: root | |
phpmyadmin: 0 | |
adminer: 0 | |
databases: | |
79sL9eHK7IZW: | |
grant: | |
- ALL | |
name: hcf | |
host: localhost | |
user: hcf | |
password: hcf | |
sql_file: '' | |
mongodb: | |
install: 0 | |
auth: 1 | |
port: '27017' | |
databases: { } | |
beanstalkd: | |
install: 0 | |
settings: | |
listenaddress: 0.0.0.0 | |
listenport: '13000' | |
maxjobsize: '65535' | |
maxconnections: '1024' | |
binlogdir: /var/lib/beanstalkd/binlog | |
binlogfsync: null | |
binlogsize: '10485760' | |
beanstalk_console: 0 | |
binlogdir: /var/lib/beanstalkd/binlog | |
rabbitmq: | |
install: 0 | |
port: '5672' |
This file contains 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
--- | |
:backends: yaml | |
:yaml: | |
:datadir: '/vagrant/puphpet' | |
:hierarchy: | |
- config | |
- passwords | |
:logger: console |
This file contains 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
--- | |
vagrantfile-digital_ocean: | |
vm: | |
provider: | |
digital_ocean: | |
client_id: APPLE | |
api_key: APPLE | |
ssh: | |
private_key_path: APPLE | |
username: APPLE | |
mysql: | |
root_password: APPLE | |
databases: | |
79sL9eHK7IZW: | |
name: APPLE | |
user: APPLE | |
password: APPLE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment