首頁 >web前端 >js教程 >我在nodejs中的子網域代理伺服器

我在nodejs中的子網域代理伺服器

王林
王林原創
2024-07-16 12:31:19740瀏覽

My subdomain proxy server in nodejs

這裡是可以用來監聽子網域路由的nodejs代理伺服器。

例如,我運行的伺服器是 localhost:5000 但我想在其中使用子網域,例如 subdomain1.localhost:5000 或不同的東西。

const express = require('express');
const app = express();
const httpProxy = require('http-proxy');

const proxy = httpProxy.createProxy();

const BASE = "https://github.com";

app.use((req, res, next) => {

     const hostname = req.hostname;
     const domains = hostname.split('.');
     const subdomain = domains[0];
     const resolveTo = BASE + '/' + subdomain;
     return proxy.web(req, res, { target: resolveTo, changeOrigin: true });
});

app.listen(5000, () => console.log('Listening on port: 5000'));

app.get('/', (req, res) => {
     return res.send('Welcome to the homepage');
});

以上是我在nodejs中的子網域代理伺服器的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn