ソースを参照

Uncomment MySQL port in default configs.

This ensures that host:port is used rather than an empty address,
which defaults to 127.0.0.1:3306 (ignoring the host in the config).
tags/v2.1.0-rc1
Alex Jaspersen 4年前
コミット
fc1d6ee724
2個のファイルの変更2行の追加4行の削除
  1. 1
    2
      conventional.yaml
  2. 1
    2
      oragono.yaml

+ 1
- 2
conventional.yaml ファイルの表示

@@ -663,8 +663,7 @@ datastore:
663 663
     mysql:
664 664
         enabled: false
665 665
         host: "localhost"
666
-        # port is unnecessary for connections via unix domain socket:
667
-        #port: 3306
666
+        port: 3306
668 667
         # if socket-path is set, it will be used instead of host:port
669 668
         #socket-path: "/var/run/mysqld/mysqld.sock"
670 669
         user: "oragono"

+ 1
- 2
oragono.yaml ファイルの表示

@@ -684,8 +684,7 @@ datastore:
684 684
     mysql:
685 685
         enabled: false
686 686
         host: "localhost"
687
-        # port is unnecessary for connections via unix domain socket:
688
-        #port: 3306
687
+        port: 3306
689 688
         # if socket-path is set, it will be used instead of host:port
690 689
         #socket-path: "/var/run/mysqld/mysqld.sock"
691 690
         user: "oragono"

読み込み中…
キャンセル
保存