Jetty を使用して複数のドメインで動作するように Railo on Jelastic (PAAS) を構成するにはどうすればよいですか?
Tomcat を使用して Railo の構成を見つけましたが、メモリ要件のために Jetty を使用したいと考えています。
ありがとう
Jelastic 固有の側面についてはわかりませんが、Jetty を使用すると、contexts フォルダーに XML ファイルを作成でき、次のようになります。
contexts/Localhost.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Set name="contextPath">/</Set>
<Set name="resourceBase"><SystemProperty name="jetty.home" default="."/>/webapps/railo/</Set>
<Set name="defaultsDescriptor"><SystemProperty name="jetty.home" default="."/>/etc/webdefault.xml</Set>
<!-- virtual hosts -->
<Set name="virtualHosts">
<Array type="String">
<Item>localhost</Item>
<Item>127.0.0.1</Item>
</Array>
</Set>
</Configure>
次に、ドメインごとにさらにファイルを作成し、resourceBase (ファイル webroot) のエントリと仮想ホストのアイテムを追加/編集します。
Jelastic が Jetty でこの処理を具体的にどのように処理するかはわかりませんが、ファイルを編集できる場合はクールなはずです。