WebCommand::serveAction(): add optional parameters --listen and --port

refs #10682
This commit is contained in:
Alexander A. Klimov 2015-11-27 11:34:53 +01:00 committed by Alexander A. Klimov
parent 80d3abed9d
commit 11c7531650
1 changed files with 7 additions and 1 deletions

View File

@ -21,8 +21,14 @@ class WebCommand extends Command
}
$fork = $this->params->get('daemonize');
$listen = $this->params->get('listen');
$port = $this->params->get('port');
$documentRoot = $this->params->shift();
$socket = $this->params->shift();
if ($listen === null) {
$socket = $port === null ? $this->params->shift() : '0.0.0.0:' . $port;
} else {
$socket = $listen;
}
// TODO: Sanity check!!
if ($socket === null) {