While I have a decent handle on the basics here, I have some easy questions (I think they are easy).
Here is what I understand the differences between these 3 versions to be.
Regular - Runs as an application in the OS of choice but does function as a server too.
Stand-alone - Runs only as a service on a box (mostly a server) and is intended to run in the background.
WAR - Runs in the background behind (or on top of) of a web server process with the intend of being served to a public facing network (Internet).
My situation: I'm building a server for my LAN. I understand that I can easily rule out the regular install as the server is CLI only. So, here is the where I'm confused. What is the real purpose of going through the trouble of using the WAR setup and having to also have a web server up and running? Couldn't you just use the Stand Alone setup and port forwarding to the server?
Thanks in advance!