MySQL plugin for Orthanc OBS-URL: https://build.opensuse.org/request/show/767307 OBS-URL: https://build.opensuse.org/package/show/graphics/orthanc-mysql?expand=0&rev=1
19 lines
646 B
JSON
19 lines
646 B
JSON
{
|
|
/**
|
|
* Configuration to use MySQL instead of the default SQLite
|
|
* back-end of Orthanc. You will have to install the
|
|
* "orthanc-postgresql" package to take advantage of this feature.
|
|
**/
|
|
"MySQL" : {
|
|
"EnableIndex" : true,
|
|
"EnableStorage" : false,
|
|
"Host" : "localhost", // For TCP connections (notably Windows)
|
|
"Port" : 3306, // For TCP connections (notably Windows)
|
|
"UnixSocket" : "/var/run/mysqld/mysqld.sock", // For UNIX on localhost
|
|
"Database" : "orthanc",
|
|
"Username" : "orthanc",
|
|
"Password" : "orthanc",
|
|
"Lock" : true // See section about Locking
|
|
}
|
|
}
|