我正在尝试从远程服务器和我的应用程序在同一域中本地运行react应用程序的登录页面(以使登录页面充填我的本地存储)。但是这样做面临着问题。
我的网址是: http://localhost.xyx.com,http://localhost.xyx.com/login,http://localhost.xyx.com/myapp
我的http.conf文件内容如下。
ProxyPass /myapp http://localhost:3000/
ProxyPassReverse /myapp http://localhost:3000/
ProxyPass / https://remoteserver.com/
ProxyPassReverse / https://remoteserver.com/
理想情况下,登录路径必须呈现来自远程服务器的捆绑包和内容,但我在控制台上看到500。从https中删除“ s”后,我的整个网页就会重定向到远程服务器。
我什至看不到路由/ myapp正常工作,除非我将/ bundle路由代理到localhost:3000,否则它将使我重新登录并出现500错误
我的主机文件如下所示。
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost