How to enable external request in IIS Express?

前端 未结 26 1221
借酒劲吻你
借酒劲吻你 2020-11-22 01:55

How can I enable remote requests in IIS Express? Scott Guthrie wrote that is possible but he didn\'t say how.

26条回答
  •  时光取名叫无心
    2020-11-22 02:31

    I solved this problem by using reverse proxy approach.

    I installed wamp server and used simple reverse proxy feature of apache web server.

    I added a new port to listen to Apache web server (8081). Then I added proxy configuration as virtualhost for that port.

    
    ProxyPass / http://localhost:46935/
    ProxyPassReverse / http://localhost:46935/
    
    

提交回复
热议问题