我有一个使用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
我在吞咽任务中的所作所为:
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服务器没有启动?
答案 0 :(得分:0)
您的PHP服务器已在构建目录中运行。因此,代理值为proxy:127.0.0.1:8010
。您可以通过localhost:8000
浏览网站。