added android proxy controller support

This commit is contained in:
Lorenzo Pichilli 2022-05-02 03:37:16 +02:00
parent d3a834c36a
commit cff77a6820
1 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ var options = {
rejectUnauthorized: false rejectUnauthorized: false
}; };
appHttps.use('/', proxy('www.google.com')); //appHttps.use('/', proxy('www.google.com'));
appHttps.get('/', (req, res) => { appHttps.get('/', (req, res) => {
console.log(JSON.stringify(req.headers)) console.log(JSON.stringify(req.headers))
const cert = req.connection.getPeerCertificate() const cert = req.connection.getPeerCertificate()
@ -201,6 +201,6 @@ app.get("/test-download-file", (req, res) => {
app.listen(8082) app.listen(8082)
appProxy.use(cors()); //appProxy.use(cors());
appProxy.use('/', proxy('www.google.com')); //appProxy.use('/', proxy('www.google.com'));
appProxy.listen(8083); //appProxy.listen(8083);