From 6196e4ae4d5bec5d43dbf0db7c19a8ba4e43ae9e Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sat, 12 Mar 2016 11:26:26 -0800 Subject: [ticket/14547] Add Vagrant to phpBB PHPBB3-14547 --- vagrant/phpbb-install-config.yml | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 vagrant/phpbb-install-config.yml (limited to 'vagrant/phpbb-install-config.yml') diff --git a/vagrant/phpbb-install-config.yml b/vagrant/phpbb-install-config.yml new file mode 100644 index 0000000000..023d7b1a9d --- /dev/null +++ b/vagrant/phpbb-install-config.yml @@ -0,0 +1,51 @@ +installer: + admin: + name: admin + password: adminadmin + email: admin@example.org + + board: + lang: en + name: phpBB Dev Board + description: My phpBB development board + + database: + dbms: mysqli + dbhost: 127.0.0.1 + dbport: ~ + dbuser: homestead + dbpasswd: secret + dbname: phpbb + table_prefix: phpbb_ +# database: +# dbms: postgres +# dbhost: 127.0.0.1 +# dbport: 5432 +# dbuser: homestead +# dbpasswd: secret +# dbname: phpbb +# table_prefix: phpbb_ +# database: +# dbms: sqlite3 +# dbhost: /tmp/phpbb.sqlite3 +# dbport: ~ +# dbuser: ~ +# dbpasswd: ~ +# dbname: phpbb +# table_prefix: phpbb_ + + email: + enabled: false + smtp_delivery : ~ + smtp_host: ~ + smtp_auth: ~ + smtp_user: ~ + smtp_pass: ~ + + server: + cookie_secure: false + server_protocol: http:// + force_server_vars: false + server_name: 192.168.10.10 + server_port: 80 + script_path: / -- cgit v1.2.1