summaryrefslogtreecommitdiff
path: root/plugins/session/config.sample.php
blob: 8677cf33680c1d14faa1ef0bbf395160527c2749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * This configuration file is used only by the RPC script.
 */

$config = [
  'plugin' => ''
  'config' => ['root_path' => '/path/to/site'],
    'mysql' => [
      'dsn' => 'mysql:host=localhost;dbname=DATABASE;charset=utf8',
      'username' => 'USER',
      'password' => 'PASSWORD',
      'table' => 'TABLE',
    ],
  ],
];