diff options
Diffstat (limited to 'phpBB/docs/install-config.sample.yml')
| -rw-r--r-- | phpBB/docs/install-config.sample.yml | 36 | 
1 files changed, 36 insertions, 0 deletions
diff --git a/phpBB/docs/install-config.sample.yml b/phpBB/docs/install-config.sample.yml new file mode 100644 index 0000000000..47c0324599 --- /dev/null +++ b/phpBB/docs/install-config.sample.yml @@ -0,0 +1,36 @@ +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_port: ~ +        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: /  | 
