English 中文(简体)
喷气管
原标题:jetty via apache mod_proxy

利用阿帕奇虚拟厅和 mo基 我要在8080港的喷气式飞机场上查阅一次java申请。

有了ProxyPass / localhost:8080/,载于我的一个pache虚拟东道配置表,我可以查阅在喷气上运行的申请,网址是www.mydomain.com/myapp,但我希望从www.mydomain.com查阅申请。

电话:ProxyPass / localhost:8080/myapp 申请无法找到,因为申请成为www.mydomain.com/myappmyapp/。

随后审判:

<Location />
        ProxyPass localhost:8080/myapp/
        SetEnv force-proxy-request-1.0 1
        SetEnv proxy-nokeepalive 1
</Location>

我可以查阅申请,但只是第一次提出请求。 随后的请求成为www.mydomain.com/myapp/

在阅读了多次的wiiki.eclipse.org/Jetty/Tutorial/Apache和apache mod_proxy docs之后,我从www.mydomain.com适当使用该申请的唯一途径是:

<Location /myapp/>
        ProxyPass localhost:8080/myapp/
        SetEnv force-proxy-request-1.0 1
        SetEnv proxy-nokeepalive 1
</Location>

<Location />
        ProxyPass localhost:8080/myapp/
        SetEnv force-proxy-request-1.0 1
        SetEnv proxy-nokeepalive 1
</Location>

因此,这两项申请均转交喷气式飞机申请。

I am quite new to apache and jetty and I am pretty sure there is a better and more elegant way of achieving the same result. In fact apache complains saying:

[warn] worker localhost:8080/myapp/ already used by another worker
最佳回答

问题是,当你在喷气机上使用时,会因此产生所有联系。 阿帕奇·古德-孔比在吉大港山区一级(头目)所做的所有重写都与反应机构取得任何成果,并保持原样。

如果你不忘周围的 /app,你可以转而改写,在你的位置栏内插入两行:

RewriteEngine on
RewriteRule ^/myapp/(.*)$ /$1 [P]

如果你想摆脱好战,那么唯一的选择(假设你不想把CPU的力量浪费在 mo_proxy_html上)就是混淆虚拟东道方,并在虚拟东道方部署应用,使其符合条件。

问题回答

如果你想要在网站的根基上能够上网,那么你需要的是将网络应用纳入集装箱的根基。 通常采用以下方式:war <>>>/em> fileROOT.war,而不是myapp.war。 (尽管这最终取决于您的杰蒂特部署人员的配置,这可能比拖欠更为复杂。)

是的,它从喷气池运作,但我要申请不止一次。 我申请的配置处于喷气式机位:

<Configure class="org.mortbay.jetty.webapp.WebAppContext">
  <Set name="contextPath">/mvc-showcase</Set>
  <Set name="war"><SystemProperty name="jetty.home"/>/webapps/mvc-showcase.war</Set>
</Configure>

我的喷气版为6.1.22。





相关问题
Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

Multiple Sites with common files

I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, I currently duplicate the files each time I create a new site and upload different css and images. What ...

http server validation

I finish a litle http server, writing from scratch. I would like to be sure that my imlementation is conforme to the HTTP specifications. W3C give us tools for HTML/XML conformance, but i see nothing ...