Andreas's answer above was useful in solving my problem about how to test a craftsman on port 80. You can specify port 80, like other port numbers, but ordinary users do not have permission to run anything on this port.
Drop some common sense and you're done with this for Linux:
sudo php artisan serve --port=80
This will allow you to test the local host without specifying a port in your browser. You can also use this to create a temporary demo, as I did.
Keep in mind, however, that the embedded PHP server is not intended for production. Use nginx / Apache for production.
Derrek Bertrand Dec 13 '14 at 21:42 2014-12-13 21:42
source share