1

ローカル マシンで正常に動作しているストリーミング s3 ノード モジュールを使用しています。

しかし、ライブでは機能していないようです。ライブサーバーで https を有効にしています。

ライブサーバーでhttpsを無効にすると、アップロード 正常に機能します。

これが私のコードです

exports.uploadFile = function (fileReadStream, awsHeader, cb) {

    //set options for the streaming module
    var options = {
        concurrentParts: 2,
        waitTime: 20000,
        retries: 2,
        maxPartSize: 10 * 1024 * 1024
    };
    //call stream function to upload the file to s3
    var uploader = new streamingS3(fileReadStream, config.aws.accessKey, config.aws.secretKey, awsHeader, options);
    //start uploading
    uploader.begin();// important if callback not provided.

    // handle these functions
    uploader.on('data', function (bytesRead) {
        console.log(bytesRead, ' bytes read.');
    });

    uploader.on('part', function (number) {
        console.log('Part ', number, ' uploaded.');
    });

    // All parts uploaded, but upload not yet acknowledged.
    uploader.on('uploaded', function (stats) {
        console.log('Upload stats: ', stats);
    });

    uploader.on('finished', function (response, stats) {
        console.log(response);
        logger.log('info', "UPLOAD ", response);
        cb(null, response);
    });

    uploader.on('error', function (err) {
        console.log('Upload error: ', err);
        logger.log('error', "UPLOAD Error: ", err);
        cb(err);
    });

これについての任意のアイデア

ありがとう

4

1 に答える 1

0

クライアントでsslを有効にする必要があり、sslEnabled次のようなオプションを追加します

var options = {
    sslEnabled: true,
    concurrentParts: 2,
    waitTime: 20000,
    retries: 2,
    maxPartSize: 10 * 1024 * 1024
};

使用できるオプションの詳細を確認できますhttp://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Config.html

于 2015-10-02T09:14:18.023 に答える