2017-04-06 09:21:19 +08:00
|
|
|
const {
|
|
|
|
|
TCPRelay
|
|
|
|
|
} = require('./tcprelay');
|
2017-04-05 19:41:04 +08:00
|
|
|
new TCPRelay({
|
2017-04-06 09:21:19 +08:00
|
|
|
serverAddress: '0.0.0.0',
|
|
|
|
|
serverPort: process.env.PORT || 21001,
|
2017-04-05 19:41:04 +08:00
|
|
|
password: 'ourvpn01010101',
|
|
|
|
|
method: "aes-256-cfb"
|
|
|
|
|
}, false, 'error').bootstrap();
|