aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/video/epgstation/use-mysql-over-domain-socket.patch
blob: 48640f2ba08d2c13b6e6745fccd4a30ae6dae5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/server/ConfigInterface.ts b/src/server/ConfigInterface.ts
index d23badd..1dd2b98 100644
--- a/src/server/ConfigInterface.ts
+++ b/src/server/ConfigInterface.ts
@@ -11,9 +11,10 @@ interface ConfigInterface {
     dbPath: string;
     dbInfoPath: string;
     mysql: {
-        host: string;
+        host?: string;
+        socketPath?: string;
         user: string;
-        password: string;
+        password?: string;
         database: string;
         connectTimeout: number;
         connectionLimit: number;