NodeJS Nginx运行php

时间:2015-03-19 15:17:20

标签: php node.js nginx

我想设置一个可以运行的node.js的nginx服务器,但是如何在其中运行php脚本。 我试过但我不知道它的工作方式。

我现在使用的代码是。

这是我使用的node.js中的代码,我在nginx的设置中没有任何改变

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Server 1\n');
}).listen(8124, "127.0.0.1");

但我不知道如何使用PHP 我希望你们能帮帮我。

0 个答案:

没有答案