歡迎您光臨本站 註冊首頁

· nginx reverse proxy雜誌閱讀

Nginx & Reverse Proxy

admin @ 2020-04-17 reply:0

Nginx & Reverse Proxy

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);

[admin via ] Nginx & Reverse Proxy已經有483次圍觀

http://coctec.com/magazine/show-post-item-31.html