From 030f6da9118a30541fe56403893e3679457a0684 Mon Sep 17 00:00:00 2001 From: Mate Bartus Date: Tue, 21 Jul 2015 15:30:31 +0200 Subject: [ticket/13740] Remove extra dot from config sample's name PHPBB3-13740 --- phpBB/docs/install-config.sample.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 phpBB/docs/install-config.sample.yml (limited to 'phpBB/docs/install-config.sample.yml') diff --git a/phpBB/docs/install-config.sample.yml b/phpBB/docs/install-config.sample.yml new file mode 100644 index 0000000000..d49e322a1f --- /dev/null +++ b/phpBB/docs/install-config.sample.yml @@ -0,0 +1,35 @@ +installer: + admin: + name: admin + password: adminadmin + email: admin@example.org + + board: + lang: en + name: My Board + description: My amazing new phpBB board + + database: + dbms: sqlite3 + dbhost: /tmp/phpbb.sqlite3 + dbport: ~ + dbuser: ~ + dbpasswd: ~ + dbname: ~ + 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: localhost + server_port: 80 + script_path: / -- cgit v1.2.1 From 9c34594bc374eeeca5d79afe2d3fdffae0cd1553 Mon Sep 17 00:00:00 2001 From: Derek Held Date: Sat, 14 May 2016 09:19:26 -0700 Subject: [ticket/14595] Added smtp_port where places where smtp_host exists. PHPBB3-14595 --- phpBB/docs/install-config.sample.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'phpBB/docs/install-config.sample.yml') diff --git a/phpBB/docs/install-config.sample.yml b/phpBB/docs/install-config.sample.yml index d49e322a1f..47c0324599 100644 --- a/phpBB/docs/install-config.sample.yml +++ b/phpBB/docs/install-config.sample.yml @@ -22,6 +22,7 @@ installer: enabled: false smtp_delivery : ~ smtp_host: ~ + smtp_port: ~ smtp_auth: ~ smtp_user: ~ smtp_pass: ~ -- cgit v1.2.1 From ffe900c72d358ba0337c607f2ed76f893715f686 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 2 Mar 2016 11:53:20 +0100 Subject: [ticket/14492] Define extensions to install in config not via cli argument PHPBB3-14492 --- phpBB/docs/install-config.sample.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'phpBB/docs/install-config.sample.yml') diff --git a/phpBB/docs/install-config.sample.yml b/phpBB/docs/install-config.sample.yml index 47c0324599..a354e52e2f 100644 --- a/phpBB/docs/install-config.sample.yml +++ b/phpBB/docs/install-config.sample.yml @@ -34,3 +34,5 @@ installer: server_name: localhost server_port: 80 script_path: / + + extensions: ['phpbb/viglink'] -- cgit v1.2.1