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. What’s Happening i am new to this, I stumbled upon this I have discovered It positively helpful
    and it has helped me out loads. I hope to contribute & aid other customers like
    its helped me. Good job.

  2. Please let me know if you’re looking for a article author for your site.
    You have some really good posts and I think I would be a good
    asset. If you ever want to take some of the load off, I’d absolutely
    love to write some articles for your blog in exchange for a link back to
    mine. Please shoot me an email if interested.
    Thanks!

  3. Appreciating the time and effort you put into your site
    and in depth information you present. It’s awesome to come across a blog every once in a while
    that isn’t the same outdated rehashed information. Wonderful read!

    I’ve saved your site and I’m including your RSS feeds to my Google account.

  4. Pretty section of content. I just stumbled upon your weblog and
    in accession capital to assert that I get in fact enjoyed account your blog posts.
    Anyway I’ll be subscribing to your augment and even I achievement you access consistently rapidly.

  5. Hi there, I found your site by way of Google whilst searching
    for a related subject, your web site came
    up, it seems great. I’ve bookmarked it in my google bookmarks.

    Hi there, simply was aware of your weblog through Google, and found that it
    is truly informative. I’m going to watch out for brussels.
    I will appreciate if you happen to continue this in future.
    Many people shall be benefited from your writing.
    Cheers!

  6. Excellent post. I was checking constantly this blog and I am impressed! Extremely helpful information specifically the last part 🙂 I care for such information a lot. I was looking for this particular info for a long time. Thank you and best of luck.|

  7. Normally I do not read article on blogs, however I wish to say that this write-up
    very compelled me to check out and do so! Your writing taste has been amazed
    me. Thank you, very nice post.

  8. It’s the best time to make some plans for the future and it is time to be happy.
    I have read this post and if I could I wish to suggest you few interesting things or suggestions.
    Perhaps you can write next articles referring to this article.
    I want to read more things about it!

  9. I was pretty pleased to uncover this web site. I need to to thank you for ones time for this particularly fantastic read!!
    I definitely savored every bit of it and I
    have you saved to fav to look at new stuff
    in your website.

  10. Hello, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam remarks? If so how do you protect against it, any plugin or anything you can recommend? I get so much lately it’s driving me crazy so any support is very much appreciated.|

  11. I blog quite often and I truly appreciate your information. This great article has really peaked my interest. I am going to take a note of your blog and keep checking for new information about once a week. I subscribed to your Feed as well.|

  12. It is in reality a nice and useful piece of information. I’m happy that you shared this useful information with us. Please stay us up to date like this. Thanks for sharing.|

  13. You are so cool! I do not suppose I’ve read something like this before. So nice to find somebody with original thoughts on this topic. Really.. thanks for starting this up. This site is something that is required on the internet, someone with a little originality!|

  14. I have read so many content on the topic of the blogger lovers except this article is actually
    a good post, keep it up.

Comments are closed.