24 lines
555 B
JavaScript
24 lines
555 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'media-coding-web',
|
|
script: './server.js',
|
|
cwd: __dirname,
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '512M',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000,
|
|
HOST: '0.0.0.0',
|
|
AWS_REGION: 'us-east-1',
|
|
S3_BUCKET_ADDRESS: 'https://s3.example.com/your_bucket_name',
|
|
S3_ENDPOINT: 'http://127.0.0.1:9000',
|
|
S3_FORCE_PATH_STYLE: 'true',
|
|
APP_TITLE: 'S3 Media Transcoder'
|
|
}
|
|
}
|
|
]
|
|
};
|