Files
vic-user-react/ConfigBasic.js
2021-09-05 13:46:51 +08:00

17 lines
629 B
JavaScript

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