Add constant case to config migration tables
- Remove triple points in config example
This commit is contained in:
parent
1141e15ccf
commit
60aedb1df9
|
@ -136,6 +136,16 @@ $a->config["key"] = "value";
|
||||||
],
|
],
|
||||||
</pre></td>
|
</pre></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><pre>
|
||||||
|
$a->config['register_policy'] = REGISTER_CLOSED;
|
||||||
|
</pre></td>
|
||||||
|
<td><pre>
|
||||||
|
'config' => [
|
||||||
|
'register_policty' => REGISTER_CLOSED,
|
||||||
|
],
|
||||||
|
</pre></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><pre>
|
<td><pre>
|
||||||
$a->path = "value";
|
$a->path = "value";
|
||||||
|
@ -225,6 +235,17 @@ key = value
|
||||||
],
|
],
|
||||||
</pre></td>
|
</pre></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><pre>
|
||||||
|
[config]
|
||||||
|
register_policty = REGISTER_CLOSED
|
||||||
|
</pre></td>
|
||||||
|
<td><pre>
|
||||||
|
'config' => [
|
||||||
|
'register_policty' => REGISTER_CLOSED,
|
||||||
|
],
|
||||||
|
</pre></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><pre>
|
<td><pre>
|
||||||
[section]
|
[section]
|
||||||
|
@ -250,7 +271,6 @@ If you need to specify a port to access the database, you can do so by appending
|
||||||
|
|
||||||
'database' => [
|
'database' => [
|
||||||
'hostname' => 'your.mysqlhost.com:123456',
|
'hostname' => 'your.mysqlhost.com:123456',
|
||||||
...
|
|
||||||
]
|
]
|
||||||
|
|
||||||
If all of the following environment variables are set, Friendica will use them instead of the previously configured variables for the db:
|
If all of the following environment variables are set, Friendica will use them instead of the previously configured variables for the db:
|
||||||
|
|
Loading…
Reference in a new issue