Files
vic-user-react/envar-base-basic.js
2022-04-25 13:30:15 +08:00

17 lines
626 B
JavaScript

module.exports={
protocol: 'http',
host: 'localhost',
port: undefined,
production: {
protocol: 'httpall',
host: 'vic-user.bittic.org',
// 如果使用 https 协议,必须填写以下内容,或在命令行参数中设置:
sslType: 'file', // greenlock or file
sslDomainList: ['vic-user.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,
},
}