Re: Publishing Tomcat webapp

2022-07-16 Thread Aryeh Friedman
On Sun, Jul 17, 2022 at 2:39 AM Aryeh Friedman wrote: > Once you have it pointing to that domain just upload the war file to it and give people the link. Small wording correction... I mean upload the war file as being a part of the webapp and/or a part of an other webapp you have for downloading.

Re: Publishing Tomcat webapp

2022-07-16 Thread Aryeh Friedman
If you need www.xxx.com to point to it you either need a machine that has that name or access to the tomcat config and add that name to it and point it to the right place. For example: In server.xml do something like this: Once you have it pointing to

Re: Publishing Tomcat webapp

2022-07-16 Thread Jasmin Ćatić
Okay, I understand this part and I have done this already. My question was how to publish on the internet, to be accessed by everyone via certain domain name (for example https://mydomain.com/webapp) ned, 17. srp 2022. u 03:44 Aryeh Friedman napisao je: > The standard way I use for doing this is

Re: Publishing Tomcat webapp

2022-07-16 Thread Aryeh Friedman
The standard way I use for doing this is the following: 1. Create a .war of the app 2. Copy it to the right machine and place it in the webapps dir (on Unix likely something like /usr/local/apache-tomcat-9.0/webapps) 3. The tomcat on the remote machine (by default config but this can be changed) w

Re: Publishing Tomcat webapp

2022-07-16 Thread Jasmin Ćatić
I access it on localhost, or in my local network via local ip address and allocated port. For example: localhost:8080/webapp ned, 17. srp 2022. u 00:18 Rob Sargent napisao je: > > > On 7/16/22 16:14, Amn wrote: > > You read my mind! I was going to ask this very question, if not > > today... tomo

Re: Publishing Tomcat webapp

2022-07-16 Thread Rob Sargent
On 7/16/22 16:14, Amn wrote: You read my mind! I was going to ask this very question, if not today... tomorrow. I am looking forward to see the replies to this question. On 2022-07-15 5:22 a.m., Jasmin Ćatić wrote: Hello, Can someone please give me a step by step guide on how to make my to

Re: Publishing Tomcat webapp

2022-07-16 Thread Amn
You read my mind! I was going to ask this very question, if not today... tomorrow. I am looking forward to see the replies to this question. On 2022-07-15 5:22 a.m., Jasmin Ćatić wrote: Hello, Can someone please give me a step by step guide on how to make my tomcat webapp available online with