App startup: add http:// before listen address for conveniance
This commit is contained in:
parent
a34b97ad5a
commit
91410b1a15
@ -20,7 +20,7 @@ export default class ExpressAppComponent extends ApplicationComponent {
|
|||||||
|
|
||||||
public async start(app: Express): Promise<void> {
|
public async start(app: Express): Promise<void> {
|
||||||
this.server = app.listen(this.port, this.addr, () => {
|
this.server = app.listen(this.port, this.addr, () => {
|
||||||
logger.info(`Web server running on ${this.addr}:${this.port}.`);
|
logger.info(`Web server running on http://${this.addr}:${this.port}.`);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Proxy
|
// Proxy
|
||||||
|
Loading…
Reference in New Issue
Block a user