Skip to content

Commit

Permalink
Don't use a low port number for ServerShell.
Browse files Browse the repository at this point in the history
Using port 80 requires sudo on many installations. Far too many
applications use 8080, or 8000 so use something different.
  • Loading branch information
markstory committed Apr 25, 2014
1 parent 9fce8a9 commit a9d3d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Command/ServerShell.php
Expand Up @@ -36,7 +36,7 @@ class ServerShell extends Shell {
*
* @var int
*/
const DEFAULT_PORT = 80;
const DEFAULT_PORT = 8765;

/**
* server host
Expand Down

0 comments on commit a9d3d65

Please sign in to comment.