-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.example.json
35 lines (35 loc) · 908 Bytes
/
config.example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"dataPath" : "/optional/path/to/data/directory",
"database" : "/optional/path/to/com.plexapp.plugins.library.db",
"host" : "localhost",
"port" : 3232,
"baseUrl" : "/",
"logLevel" : "DarkInfo",
"ssl" : {
"enabled" : false,
"sslOnly" : false,
"sslHost" : "0.0.0.0",
"sslPort" : 3233,
"certType" : "pfx",
"pfxPath" : "/path/to/cert.pfx",
"pfxPassphrase" : "password",
"pemCert" : "/path/to/pem/cert.pem",
"pemKey" : "/path/to/pem/key.pem"
},
"authentication" : {
"enabled" : false,
"sessionTimeout" : 86400
},
"features" : {
"autoOpen" : true,
"extendedMarkerStats" : true,
"previewThumbnails" : true,
"preciseThumbnails" : false
},
"pathMappings": [
{
"from": "Z:\\",
"to": "/mnt/data"
}
]
}