Skip to content

Commit b5057d0

Browse files
Alexey Abelalexeyabel
authored andcommitted
Update (dead) links in README.md
1 parent e11eb67 commit b5057d0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,16 @@ There are three types of configuration parameters:
7171

7272
that *User Backend SQL Raw* will connect to.
7373

74-
| key | value | default value |
75-
| ------------------ | ---------------------------------------------------------------------------------------------------------------------- | ------------- |
76-
| `db_type` | `postgresql` or `mariadb` | `postgresql` |
77-
| `db_host` | your db host, e.g. `localhost` or `db.example.com` or (only for PostgreSQL) path to socket, e.g. `/var/run/postgresql` | `localhost` |
78-
| `db_port` | your db port | `5432` |
79-
| `db_name` | your db name | |
80-
| `db_user` | your db user | |
81-
| `db_password` | your db password | |
82-
| `db_password_file` | path to file containing the db password | |
83-
| `mariadb_charset` | the charset for mariadb connections | `utf8mb4` |
74+
| key | value | default value |
75+
| ------------------ | ------------------------------------------------------------------------------------------------------------------------ | ------------- |
76+
| `db_type` | `postgresql` or `mariadb` | `postgresql` |
77+
| `db_host` | your db host such as `localhost` or `db.example.com` or (only for PostgreSQL) path to socket, e.g. `/var/run/postgresql` | `localhost` |
78+
| `db_port` | your db port | `5432` |
79+
| `db_name` | your db name | |
80+
| `db_user` | your db user | |
81+
| `db_password` | your db password | |
82+
| `db_password_file` | path to file containing the db password | |
83+
| `mariadb_charset` | the charset for mariadb connections | `utf8mb4` |
8484

8585
* Values without a default value are mandatory, except that
8686
* only one of `db_password` or `db_passowrd_file` must be set.
@@ -99,7 +99,7 @@ that will be used to read/write data.
9999
username (aka uid) of the user trying to login.
100100
* You don't need to supply all queries. For example, if you use the default user home simply leave
101101
the query `get_home` commented. This app will recognize this and
102-
[communicate](https://docs.nextcloud.com/server/13/developer_manual/api/OCP/UserInterface.html#OCP\UserInterface::implementsActions)
102+
[communicate](https://github.com/nextcloud/server/blob/316acc3cc313f4333fe29d136f9124f163b40dec/lib/public/UserInterface.php#L47)
103103
to Nextcloud that this feature is not available.
104104
* `user_exists` and `get_users` are required, the rest is optional.
105105
* For user authentication (i.e. login) you need at least `get_password_hash_for_user`,
@@ -146,7 +146,7 @@ web server. Without a limit, malicious users could feed your Nextcloud instance
146146
## Troubleshooting
147147

148148
* **TL;DR**: check the log file
149-
* This app has no UI, therefore all error output (exceptions and explicit logs) is written to [Nextcloud's log](https://docs.nextcloud.com/server/20/admin_manual/configuration_server/logging_configuration.html),
149+
* This app has no UI, therefore all error output (exceptions and explicit logs) is written to [Nextcloud's log](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/logging_configuration.html),
150150
by default */var/www/nextcloud/data/nextcloud.log* or */var/log/syslog*. Log level 3 is sufficient for all non-debug output.
151151
* There are no semantic checks for the SQL queries. As soon as a query string
152152
is not empty the app assumes that it is a query and executes it. It's likely that you will

0 commit comments

Comments
 (0)