xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Nginx & Reverse Proxy

https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/

https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-as-a-web-server-and-reverse-proxy-for-apache-on-one-ubuntu-16-04-server

node.js http/https server

// const http = require(`http`);
const https = require(`https`);

/*

https://nodejs.org/api/http.html

https://nodejs.org/api/https.html
https://nodejs.org/api/http2.html


*/

//$ node ./src/node-server.js

// req: https.clientRequest
const req = https.get(
    `https://abc.xgqfrms.xyz/`,
    // `https://www.xgqfrms.xyz/`,
    // `https://www.google.com/`,
    (res) => {
        // res: https.IncomingMessage
        console.log(`res.statusCode = `, res.statusCode);
        console.log(`res.headers = `, res.headers);
        const ip = res.socket.remoteAddress;
        const port = res.socket.remotePort;
        // res.end(`Your IP address is ${ip} and your source port is ${port}.`);
        res.on(
            `data`,
            (data) => {
                console.log(`data = 
`, data.toString());
            }
        );
    }
);

req.on(`error`, err => console.log(`error = 
`, err));

console.log(`req.agent = `, req.agent);

原文地址:https://www.cnblogs.com/xgqfrms/p/8909267.html