Setting Multiple Domain pada Apache Tomcat

Tutorial

Banyak domain (Multiple domain) dapat diletakkan pada satu mesin/server dengan satu web server, misalnya Tomcat, Apache atau IIS. Cara seperti ini dapat digunakan untuk menghemat IP publik. Beberapa domain dan subdomain misalnya www.domainku.com, blog.domainku.com dan download.domainku.com dapat di-host pada satu web server dengan satu IP publik.

Pada tomcat, yang perlu dilakukan adalah menambahkan beberapa konfigurasi:

Pertama,
Buka file server.xml pada ${CATALINA_HOME}/conf
${CATALINA_HOME} adalah direktori tempat tomcat diinstall. Misalnya /usr/local/tomcat pada linux atau c:\tomcat ada Windows tergantung dimana Tomcat diinstall, kemudian tambahkan kode berikut:

<Server>
     <Service>
         <Engine>
           ..................
           ..................
           <Host name="blog.domainku.com"
                       debug="0"
                       appBase="/home/user/blog"
                       unpackWARs="true"
                       autoDeploy="true"
                       xmlValidation="true"
                       xmlNamespaceAware="false">
                    <Alias>blog.domainku.com</Alias>
           </Host>
         </Engine>
     </Service>
 </Server>

Kedua,
Masuk ke direktori ${CATALINA_HOME}/conf/Catalina dan buat direktori baru blog.domainku.com

Ketiga,
Masuk ke direktori ${CATALINA_HOME}/conf/Catalina/blog.domainku.com dan buat file baru dengan nama ROOT.xml yang isinya adalah sebagai berikut:

<Context docBase="/home/user/blog" path="" />

Terakhir,
Restart tomcat.

10,014 thoughts on “Setting Multiple Domain pada Apache Tomcat

  1. Its like you read my mind! You appear to know a lot about this,
    like you wrote the book in it or something. I think that you
    can do with a few pics to drive the message home a little bit, but instead of that,
    this is fantastic blog. An excellent read. I’ll certainly be back.

  2. Have you ever thought about writing an ebook or guest authoring on other blogs?
    I have a blog based on the same topics you discuss and would really
    like to have you share some stories/information. I know my subscribers would appreciate your work.
    If you’re even remotely interested, feel free to send
    me an e-mail.

  3. GET PROFESSIONALLY VIDEOS AT AFFORDABLE PRICES

    We offer professionally produced videos at affordable prices.
    Our videos have the look and feel of a high quality television commercial, complete with professional spokesperson, background, text,
    images, logos, music and of course, most importantly, your company’s contact information for your umarfaisol.com.

    If you’re ready to reach more clients today, let us get to work on producing your company’s exclusive video.
    MORE INFO=> http://vpwb85396.bloggerbags.com/8234991/get-videos-at-affordable-prices

  4. This design is incredible! You most certainly know how to keep a reader
    entertained. Between your wit and your videos, I was almost moved to start my own blog (well, almost…HaHa!) Fantastic job.
    I really enjoyed what you had to say, and more than that, how you presented it.
    Too cool!

  5. Does your website have a contact page? I’m having a tough time locating it but, I’d like to send you an e-mail.
    I’ve got some ideas for your blog you might be interested in hearing.
    Either way, great site and I look forward to seeing it improve over time.

  6. wonderful post, very informative. I ponder why the opposite experts of this
    sector do not notice this. You should continue your writing.
    I am confident, you have a huge readers’ base already!

Comments are closed.