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

How to install RetroArch on CentOS 8

RetroArch is a nice front-end GUI to enable a computer to emulate various console systems…

Enable Hibernation Option on Linux Mint 20

At first glance, one would be tempted to simply expand an existing a /swapfile as…

Puppet Client Server Lab Setup

Server # Setup client machine name sudo vim /etc/hosts ## Insert this line ## xx.xx.xx.xx…