Skip to content

Commit 3c1139a

Browse files
committed
upd: change default host from 0.0.0.0 to 127.0.0.1
1 parent e1637ac commit 3c1139a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default class OurApp extends App {
3333
'!./common/api/**',
3434
];
3535

36-
protected hostname = process.env.HOST || '0.0.0.0';
36+
protected hostname = process.env.HOST || '127.0.0.1';
3737

3838
protected port = parseInt(process.env.PORT) || 3000;
3939

0 commit comments

Comments
 (0)