Skip to content

Commit e598ad0

Browse files
committed
fix: update default configs (#152)
1 parent f211af4 commit e598ad0

File tree

4 files changed

+16
-20
lines changed

4 files changed

+16
-20
lines changed

configs/config.example.logical_generic.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ server:
1818
verificationToken: "secret_token"
1919

2020
# The host which the Database Lab server accepts HTTP connections to.
21-
# By default: "127.0.0.1".
21+
# By default uses an empty string to accept connections to all network interfaces.
2222
# Keep it default when running inside a Docker container.
23-
# Use an empty string to accept connections to all network interfaces.
24-
host: "127.0.0.1"
23+
host: ""
2524

2625
# HTTP server port. Default: 2345.
2726
port: 2345
@@ -65,9 +64,9 @@ provision:
6564
# dataDir (PostgreSQL data directory): /var/lib/dblab/data
6665
# pgDataSubdir: /pgdata
6766
# -- in this case, we assume that the mount point is: /var/lib/dblab
68-
# Note, that, despite the fact that it alwats begins with "/",
67+
# Note, that, despite the fact that it always begins with "/",
6968
# it is a relative path. Default: "/".
70-
pgDataSubdir: "/data"
69+
pgDataSubdir: "/"
7170

7271
# Database username that will be used for Postgres management connections.
7372
# This user must exist.

configs/config.example.logical_rds.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ server:
1818
verificationToken: "secret_token"
1919

2020
# The host which the Database Lab server accepts HTTP connections to.
21-
# By default: "127.0.0.1".
21+
# By default uses an empty string to accept connections to all network interfaces.
2222
# Keep it default when running inside a Docker container.
23-
# Use an empty string to accept connections to all network interfaces.
24-
host: "127.0.0.1"
23+
host: ""
2524

2625
# HTTP server port. Default: 2345.
2726
port: 2345
@@ -65,9 +64,9 @@ provision:
6564
# dataDir (PostgreSQL data directory): /var/lib/dblab/data
6665
# pgDataSubdir: /pgdata
6766
# -- in this case, we assume that the mount point is: /var/lib/dblab
68-
# Note, that, despite the fact that it alwats begins with "/",
67+
# Note, that, despite the fact that it always begins with "/",
6968
# it is a relative path. Default: "/".
70-
pgDataSubdir: "/data"
69+
pgDataSubdir: "/"
7170

7271
# Database username that will be used for Postgres management connections.
7372
# This user must exist.

configs/config.example.physical_generic.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ server:
1818
verificationToken: "secret_token"
1919

2020
# The host which the Database Lab server accepts HTTP connections to.
21-
# By default: "127.0.0.1".
21+
# By default uses an empty string to accept connections to all network interfaces.
2222
# Keep it default when running inside a Docker container.
23-
# Use an empty string to accept connections to all network interfaces.
24-
host: "127.0.0.1"
23+
host: ""
2524

2625
# HTTP server port. Default: 2345.
2726
port: 2345
@@ -65,9 +64,9 @@ provision:
6564
# dataDir (PostgreSQL data directory): /var/lib/dblab/data
6665
# pgDataSubdir: /pgdata
6766
# -- in this case, we assume that the mount point is: /var/lib/dblab
68-
# Note, that, despite the fact that it alwats begins with "/",
67+
# Note, that, despite the fact that it always begins with "/",
6968
# it is a relative path. Default: "/".
70-
pgDataSubdir: "/data"
69+
pgDataSubdir: "/"
7170

7271
# Database username that will be used for Postgres management connections.
7372
# This user must exist.

configs/config.example.physical_walg.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ server:
1818
verificationToken: "secret_token"
1919

2020
# The host which the Database Lab server accepts HTTP connections to.
21-
# By default: "127.0.0.1".
21+
# By default uses an empty string to accept connections to all network interfaces.
2222
# Keep it default when running inside a Docker container.
23-
# Use an empty string to accept connections to all network interfaces.
24-
host: "127.0.0.1"
23+
host: ""
2524

2625
# HTTP server port. Default: 2345.
2726
port: 2345
@@ -65,9 +64,9 @@ provision:
6564
# dataDir (PostgreSQL data directory): /var/lib/dblab/data
6665
# pgDataSubdir: /pgdata
6766
# -- in this case, we assume that the mount point is: /var/lib/dblab
68-
# Note, that, despite the fact that it alwats begins with "/",
67+
# Note, that, despite the fact that it always begins with "/",
6968
# it is a relative path. Default: "/".
70-
pgDataSubdir: "/data"
69+
pgDataSubdir: "/"
7170

7271
# Database username that will be used for Postgres management connections.
7372
# This user must exist.

0 commit comments

Comments
 (0)