Skip to content

Commit ef42009

Browse files
committed
Change default host and port due to in windows cannot use 0.0.0.0 and port 9001.
1 parent 98594c4 commit ef42009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/tail-db.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
| will use this host when starting the server.
2525
|
2626
*/
27-
'host' => env('TAIL_DB_HOST', '0.0.0.0'),
27+
'host' => env('TAIL_DB_HOST', '127.0.0.1'),
2828

2929
/*
3030
|--------------------------------------------------------------------------
@@ -35,7 +35,7 @@
3535
| 'tail:db' command, it will start the ReactPHP Server. ReactPHP Server
3636
| will use this port when starting the server.
3737
*/
38-
'port' => env('TAIL_DB_PORT', '9001'),
38+
'port' => env('TAIL_DB_PORT', '9002'),
3939

4040
/*
4141
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)