Posted On October 24, 2022

Quick Note on Tomcat with NGINX

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Quick Note on Tomcat with NGINX

Below is a quick short-hand note to remind oneself to setup proxying properly between Tomcat and NGINX.

Edit this file: /etc/apache2/sites-enabled/portal.dragoncoin.conf

Add this content:

server {
    server_name  portal.dragoncoin.com;

    location / {
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:80; # where 80 is the port of the tomcat app
    }
}

Edit this file: /etc/nginx/nginx.conf

Find this:

http { ... }

Add this content:

include /etc/apache2/sites-enabled/portal.dragoncoin.conf

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

CentOS 5: Installing XAMPP, and Gallery2

1. Install CentOS 5 - Do not install MySQL, Apache, and FTP - edit /etc/resolv.conf…

How to Install Selenium for Python on Windows or Linux

Windows # This error would occur if pip is not up to date PS C:\WINDOWS\system32>…

Ubuntu 18.04: Network Configuration Utility

Prior to version 18.04, network configurations have been via these commands: sudo vim /etc/network/interfaces sudo…