17 lines
624 B
JavaScript
17 lines
624 B
JavaScript
module.exports={
|
|
protocol: 'http',
|
|
host: 'localhost',
|
|
port: undefined,
|
|
|
|
production: {
|
|
protocol: 'httpall',
|
|
host: 'vic-app.bittic.org',
|
|
// 如果使用 https 协议,必须填写以下内容,或在命令行参数中设置:
|
|
sslType: 'file', // greenlock or file
|
|
sslDomainList: ['vic-app.bittic.org'],
|
|
sslKey: '/etc/letsencrypt/live/vic-server.bittic.org/privkey.pem', // ssl key file,
|
|
sslCert: '/etc/letsencrypt/live/vic-server.bittic.org/fullchain.pem', // ssl cert file,
|
|
sslCA: '/etc/letsencrypt/live/vic-server.bittic.org/bundle.pem', // ssl ca file,
|
|
},
|
|
|
|
} |