duanhui1185 2013-07-09 12:39
浏览 149
已采纳

重定向URL路径到端口

I have many web apps running on a server. Some of them I have made, some of them are open source (such as open-cloud). All my web apps run on a specific port. My port 80 is still free.

I would like to make a nice welcome web page to all my apps on the port 80 to allow my co-worker to see them on the local network.

My problem is to setup the urls map. I would like the path http://machine-name:80/open-cloud/ to be the exact same thing then http://machine-name:8080/ (including the static files if possible).

One other possible solution would be to use sub-domaines such as http://open-cloud.machine-name:80/ for each application. But I do not know how to do that inside a local network.

I am looking for a solution in Python, node.js or Go (that would be awesome!). It is important to notice that none of my web app runs on ssl and that it will probably handle very low trafic. It is only a local network after all!

Any help and reference would be welcome.

Cheers!

  • 写回答

2条回答 默认 最新

  • dota220141003 2013-07-09 13:21
    关注

    You just need some kind of proxy, like http://nginx.org for example.

    Then pass the domains you want to your application ports:

    server {
      listen 80;
      server_name app1.local;
    
      location / {
        proxy_pass          http://127.0.0.1:8080/;
        proxy_set_header    HOST $http_host;
        proxy_set_header    X-Real-IP $remote_addr;
      }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)