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

Using Python to Automate Video Playing on Ubuntu

This little snippet was generated using ChatGPT with more than a little bit of prompting…

How To Install Zabbix Client on CentOS 8

# Open the commonly known Zabbix ports firewall-cmd --zone=public --add-port=10050/tcp --permanent firewall-cmd --zone=public --add-port=161/tcp --permanent…

Installing Red5 on CentOS 5

I mostly work with Debian Etch 4 but the process would pretty much be the…