0

我有一个使用 node 和 php 的项目。我一直在使用 gulp-connect-php npm 包来提供 php 服务器。

现在我正在尝试将这个项目从我的桌面克隆到我的笔记本电脑上。我已经对依赖项进行了压缩,并且在克隆后运行 npm install 和 gulp 后,该项目经过测试可以在 2 个桌面上正常运行。问题是该项目似乎无法在我的笔记本电脑上运行。当我尝试在我的笔记本电脑上运行 gulp 时,它运行了所有的 gulp 任务,除了它没有像这样启动 PHP 服务器:

PHP 7.0.0 Development Server started at ...
Listening on http://127.0.0.1:8010

我的 gulp 任务中有什么:

var browserSync = require('browser-sync');
var gulp        = require('gulp');
var php         = require('gulp-connect-php');

gulp.task('serve', function() {
    php.server({
        base: 'build',
        port: 8010,
        keepalive: true
    }, function() {
        browserSync({
            proxy: '127.0.0.1:8010/build',
            watchTask: true,
            port: 8000
        });
    });
});

我还能做些什么来找出为什么 PHP 服务器没有启动?

4

1 回答 1

0

您的 PHP 服务器已经在构建目录中运行。所以将代理值设为proxy:127.0.0.1:8010. 您可以通过 浏览您的网站localhost:8000

于 2017-01-29T04:26:28.387 回答