Skip to content

Instantly share code, notes, and snippets.

@nongio-zz
Created July 28, 2014 13:43
Show Gist options
  • Save nongio-zz/6792c34f121ebcc61e77 to your computer and use it in GitHub Desktop.
Save nongio-zz/6792c34f121ebcc61e77 to your computer and use it in GitHub Desktop.
serve simple php file using nodejs
var cgi = require('cgi'),
http = require('http'),
path = require('path');
var script = path.resolve(__dirname, 'index.php');
http.createServer( cgi(script) ).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment