LoginSignup
3
3

More than 5 years have passed since last update.

tomcatとの連携時に一部ディレクトリのみapacheに応答させる

Last updated at Posted at 2014-08-24

apacheをリバースプロキシとして使用し、tomcatにすべてを引渡している場合、
静的ファイル(画像やPDF等)は、apacheのディレクトリ上に配置し、
デプロイせずとも、ファイルの入れ替えを行いたいというようなときに使います。

apacheの設定

httpd-proxy.confを下記のようにします。
Location があると、エラーになるので、記述しないでください。。

ProxyPass /html/ !
ProxyPass / ajp://localhost:8009/

のように設定すると、htmlファイルはtomcatへ振られず、apache側の処理となります。
あとは、apacheのhttpd.confにて、ディレクトリの設定等を行ってください。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3