嘿所有,我正在尝试使用plesk设置tomcat webserver。不幸的是,我发现很晚,这对plesk来说并不是一件容易的事。尽管如此,我还是需要设置它。
我的问题是apache和tomcat之间的连接,我试过询问我的提供商,但他们所能做的只是设置一个带有iFrame的index.html文件。不是我最喜欢的方案。所以我去打网吧。这是我到目前为止所发现的:
在域的conf目录中创建一个vhost.conf文件
DocumentRoot /var/lib/tomcat5/webapps/CMS
<Directory /var/lib/tomcat5/webapps/CMS”>
Options Indexes FollowSymLinks
DirectoryIndex index.gsp index.html index.htm
</Directory>
JkMount /CMS ajp13
JkMount /CMS/* ajp13
<Location “/WEB-INF/*”>
AllowOverride None
deny from all
</Location>
<Location “/META-INF/*”>
AllowOverride None
deny from all
</Location>
(我正在构建一个grails站点,因此index.gsp)
server.xml包含以下代码:
<Connector port="9008" enableLookups="true" debug="0" protocol="AJP/1.3"/>
<Connector port="9080" maxThreads="15" minSpareThreads="5" maxSpareThreads="75" enableLookups="true" acceptCount="10" debug="0" connectionTimeout="20000" disableUploadTimeout="true"/>
<Engine name="PSA" defaultHost="localhost" debug="0">
<Host deployXML="true" name="gasmeting.tk" debug="0" appBase="psa-webapps/gasmeting.tk" unpackWARs="false" autoDeploy="true" liveDeploy="true">
这应该有用,但它没有......
Thnx提前!