[JAVA] How to install Web application for each language in Nginx
Introduction
In Nginx, easily organize how to introduce Web applications in each language.
Mainly either set reverse_proxy in Nginx or install module in Nginx.
List of introduction methods for each language
Ruby
- reverse_proxy
--WEBrick (Rails Server) ... The simplest but not common.
--unicorn ... This is the current mainstream.
--puma ... Standard in Rails 5. It supports low-speed client multi-thread processing, and this is probably the main one in the future.
- module
Java
--reverse_proxy ... Both tomcat and Spring are possible in this format
PHP
Python
Perl