How to host a tiny RESTful application written in Java/C#/Py
Currently I have a node with nginx, I might have Apache running as well but not configured correctly, running that serves some public websites (Wordpress).
Does that mean port 80 is taken? How should I host my application to be able to handle urls like
Do I have to communicate with nginx in some way, since I suppose it's what handles the URL?
1 Reply
Since your application wouldn't otherwise care about FastCGI or HTTP, many things exist to make your application web-aware without you having to become web-aware. For Java, I've used Tomcat and Jetty; for Python, I've used flup and gunicorn. Dunno about C#.