Skip to content

Instantly share code, notes, and snippets.

View canujohann's full-sized avatar

johann canu canujohann

  • Axa Life Insurance
  • Tokyo
View GitHub Profile
@canujohann
canujohann / apache-tomcat.md
Last active November 26, 2019 13:00
Tomcat+Apacheの連動

TOMCAT-APACHEの連動

apacheとtomcatを連動させるにはモジュール(connector)を利用します。

alt text

いくつかのモジュールが存在しますが、基本的に一番使われているものは

  1. mod_ajp
  2. mod_jk
@canujohann
canujohann / virtual_hosts.md
Last active August 29, 2015 14:00
2014年新卒: ApacheのVirtualHost

Apache VirtualHost

#####一つのプロジェクト

サーバーに一つのプロジェクトが入っている場合は__VirtualHost__を使う必要がありません。 httpd.conf(apacheの設定ファイル)の "DocumentRoot"プロパティーを設定するだけで動きます。

DocumentRoot "/var/www/html/myworkspace"