Skip to main content

Posts

Showing posts with the label standalone

Tiny PHP "standalone” server (or framework) for local debug without Apache/Nginx/Lighttpd/etc

There's manage.py runserver in Django or ruby script/server in Ruby on Rails — those familiar with one of those frameworks should already get the idea what I'm looking for. They run tiny "standalone" web server, which is perfectly enough to debug the application locally, without any need for other software (Apache/Nginx/Lighttpd/etc). I wonder is there any PHP implementation of such tool, or, maybe, some PHP framework has such feature? Surely, I can pack pre-built pre-configured static nginx executable, but this would not be pretty, and certainly not cross-platform. Having standalone debug webserver written in PHP itself will make the package self-contained. I.e. I'd like to type something like php tools/runserver.php , point browser to http://localhost:8000/ and see the site up and running, ready to debug. My Google-fu has failed me, but I strongly suspect that there is such project already. Source: Tips4all