当前位置:  开发笔记 > 运维 > 正文

根据子路径反向代理两台服务器

如何解决《根据子路径反向代理两台服务器》经验,为你挑选了1个好方法。

apache问题。一定很简单,但我失败了。

我正在尝试将apache配置为对其背后的两个服务器的反向代理。棘手的部分是注册代理规则的唯一区别是子路径。

我的想法是:

mydomain.com -> localhost:8083
mydomain.com/api -> localhost:8080/api

目前我的配置是这样的:


        ProxyPreserveHost On
        ProxyRequests Off
        ServerName mydomain.com
        ServerAlias www.mydomain.com

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        ProxyPass / http://localhost:8083/
        ProxyPassReverse / http://localhost:8083/

        ProxyPass /api http://localhost:8080/api #already tried with slashes on both first and second parameters
        ProxyPassReverse /api http://localhost:8080/api #already tried with slashes on both first and second parameters


但是/ api不起作用,它不断将请求发送到8083。为什么有任何想法?

感谢您的关注



1> obscurite..:

尝试在“ /”之前执行“ / api” ProxyPass + ProxyPassReverse。我强烈怀疑'/'是一个包罗万象的东西,而您永远也不会遇到'/ api'的情况。这可以解释为什么您总是选择8083,即“ /”情况。


        ProxyPreserveHost On
        ProxyRequests Off
        ServerName mydomain.com
        ServerAlias www.mydomain.com

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        ProxyPass /api http://localhost:8080/api #already tried with slashes on both first and second parameters
        ProxyPassReverse /api http://localhost:8080/api #already tried with slashes on both first and second parameters

        # do this last...
        ProxyPass / http://localhost:8083/
        ProxyPassReverse / http://localhost:8083/



推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有