You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
812 B
JavaScript
32 lines
812 B
JavaScript
7 months ago
|
var express = require('express'),
|
||
|
http = require('http'),
|
||
|
path = require('path'),
|
||
|
|
||
|
// require php-express and config
|
||
|
phpExpress = require('../')({
|
||
|
binPath: '/usr/bin/php' // php bin path.
|
||
|
});
|
||
|
|
||
|
|
||
|
// init express
|
||
|
var app = express();
|
||
|
app.set('port', process.env.PORT || 3000);
|
||
|
app.use(express.bodyParser()); // body parser is required!!
|
||
|
|
||
|
|
||
|
// set view engine to php-express
|
||
|
app.set('views', path.join(__dirname, 'views'));
|
||
|
app.engine('php', phpExpress.engine);
|
||
|
app.set('view engine', 'php');
|
||
|
app.use(app.router);
|
||
|
app.use(express.static(path.join(__dirname, 'public')));
|
||
|
|
||
|
|
||
|
// routing all .php file to php-express
|
||
|
app.all(/.+\.php$/, phpExpress.router);
|
||
|
|
||
|
|
||
|
http.createServer(app).listen(app.get('port'), function(){
|
||
|
console.log('Express server listening on port ' + app.get('port'));
|
||
|
});
|