0

古いドキュメントを考慮して、 http://docs.cloudfoundry.com/frameworks/nodejs/nodejs.htmlからまっすぐに私がしたことは次のとおりです。

$ vmc push vknodesample01
Instances> app.js

1: node
2: other
Framework> 1   

1: node
2: node06
3: node08
4: other
Runtime> 1

1: 64M
2: 128M
3: 256M
4: 512M
5: 1G
6: 2G
Memory Limit> 1  

Creating vknodesample01... OK

1: vknodesample01.cloudfoundry.com
2: none
URL> vknodesample01.cloudfoundry.com

Updating vknodesample01... OK

Create services for application?> n

Save configuration?> y

Saving to manifest.yml... OK
Uploading vknodesample01... OK
Using manifest file manifest.yml

Starting vknodesample01... OK
Checking vknodesample01... GAVE UP
Application failed to start.

$ cat app.js
$ cat app.js
var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://example.com:1337/');

example.com は実際には 1 27 ドット 0 ドット 0 ドット 1 です。

server.js がない限りパッケージは必要ないとドキュメントに記載されているため、package.json ファイルは含めませんでした。

4

1 に答える 1

1

ループバックアドレスを取り出すので、こんな感じです...

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(1337);

デプロイするときは、「node」フレームワークオプションではなく「node08」も選択します。

于 2012-12-14T15:46:17.617 に答える