- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在配置 Apache 和 Tomcat 时遇到问题,情况如下:
我有一个 Apache Web 服务器,运行正常,我只需键入以下内容即可访问该服务器:
http://localhost
http://localhost:8080/prueba
http://localhost/prueba
NameVirtualHost *:80
<VirtualHost *:80>
ServerName 127.0.0.1
DocumentRoot /var/www
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /static/ !
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
.
.
.
Alias /static/ "/apache/www/"
</VirtualHost>
ProxyPass /prueba ajp://localhost:8009/prueba
ProxyPassReverse /prueba ajp://localhost:8009/prueba
ProxyPass / ajp://localhost:8009/prueba
ProxyPassReverse / ajp://localhost:8009/prueba
最佳答案
你必须把
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
<Connector port="8009" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
关于proxy - Apache 和 Tomcat : ProxyPass and ProxyPassReverse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13550121/
我在设置 Proxypass 时遇到了两个问题。我已经在我的 Apache 设置中设置了 Proxypass。 例如: ProxyPass / http://www.domainname.com:80
我在给定的机器上运行了多个网络服务器(Apache、Tomcat、自定义 Python 服务器)。我让 Apache 监听端口 80,这是标准设置。为了通过此端口访问我的其他服务器之一,我在 Apac
我尝试设置 nginx,使其将请求代理到多个位置。例如。 /location1和 /location2都应该代理到 http://localhost:8080 .我只是不知道如何在不使用多个位置块的情
我有以下 nginx.conf location /monitoring/prometheus/ { resolver 172.20.0.10 valid=5s; set $prometheu
这就是我需要实现的目标我需要将所有对/public/的请求代理到另一台服务器,但对/public/forms/的请求不得被代理,而应由该 apache 服务器提供服务。 我已将这些指令添加到我的 ht
我正在尝试在我们的标准 http 代理服务器上为我的公司环境的 ActiveMQ 管理页面设置代理。我有一个规则,允许我访问管理登录页面: ProxyPass /foobar hostname:816
我最近将我们的一个网站迁移到了 Apache 2.0 和 Tomcat7 AWS,但我的 ProxyPass 指令有问题 ProxyPass / http://10.1.1.1:8080/faith/
我必须将 80 上的所有 apache 请求重定向到 8080 上的 tomcat,一条路径除外。 所以,如果接收到 http://example.com/anything --> tomcat:80
我正在使用 apache 作为反向代理,我可以对除某些 URL 之外的所有 URL 执行 ProxyPassReverse 吗?例如这是我的配置: ProxyPass /myapp http://lo
所以我使用 Apache 将特定文件夹代理到 Glassfish 实例。我的conf中的规则是: ProxyPass /folder http://localhost:28083 ProxyPassR
如果我有两个代理规则并且它们“重叠”,有没有办法指定最重要的规则? 示例(虚拟主机定义的一部分) ProxyPass /foo http://bar:8180/ ProxyPass / http://
我尝试排除所有以 "dgg-" 开头并以 ".xml" 结尾的文件,例如:dgg-file-1。 xml 使用 apache 代理。 这有效: ProxyPass /myfile.xml ! # si
我尝试了这个问题的答案。 How to merge multiple ProxyPass directives in Apache? 但是当我启动 apache 时出现错误,提示 ProxyPass|
由于 horrible, horrible errors ,我们更改了 Apache 连接到 Tomcat 的方式。我们正在使用 mod_jk : JkMount /path ajp13 现在我们使用
我在使用 mod_proxy 和 proxypass 指令时出现以下错误: 我的虚拟主机文件: LoadModule proxy_module modules/mod_proxy.so
我知道如何使用 ProxyPass 设置 apache 服务器。以便客户端可以连接到特定的 url,被重定向到另一个 url,但无法识别这一点,因为他输入的 url 仍然存在。 我必须使用 apach
我正在使用以下 Apache 配置将请求转发到 Tomcat 服务器: ProxyPass /myapp ajp://localhost:8009/myapp max=2 这是一个简化的配置,但足以重
我试图通过在 web.xml 文件中使用过滤器来锁定对我的 Tomcat WebApp 的管理部分的访问。 Remote Address Filter
我在同一台机器上使用 Apache 和 Tomcat 服务器时遇到了一些问题。我想将虚拟主机 kb.domain 重定向到 tomcat 应用程序 kb。 我已经阅读了互联网上的一些帖子,但没有找到解
这个让我抓狂。我有一个活跃且正在使用的 Apache 代理服务器在 EC2 上提供内容。它运行良好,并且具有各种配置如下的虚拟主机: ServerName m.FOO.com Ser
我是一名优秀的程序员,十分优秀!