firefox的Apache proxypass问题

firefox的Apache proxypass问题,apache,mod-proxy,vhosts,proxypass,Apache,Mod Proxy,Vhosts,Proxypass,我已经在docker容器中运行了一个wordpress博客,我正在尝试从主机的apache配置中的virtualhost反向代理到它。我的vhost配置如下所示: <VirtualHost *:80> ServerName my.vhost.com ProxyRequests off ProxyPreserveHost on ProxyPass / http://127.0.0.1:8084/ ProxyPassReverse / h

我已经在docker容器中运行了一个wordpress博客,我正在尝试从主机的apache配置中的virtualhost反向代理到它。我的vhost配置如下所示:

<VirtualHost *:80>
    ServerName  my.vhost.com
    ProxyRequests     off
    ProxyPreserveHost on
    ProxyPass / http://127.0.0.1:8084/
    ProxyPassReverse / http://127.0.0.1:8084/
</VirtualHost>

ServerName my.vhost.com
代理请求关闭
代理主机
ProxyPass/http://127.0.0.1:8084/
ProxyPassReverse/http://127.0.0.1:8084/
当我用chrome访问它时,它工作得很好。当我把它卷起来的时候,它看起来很好。但当我在firefox中访问my.vhost.com时,它会将我重定向到主机ip地址(无端口)

有人知道这里发生了什么吗