Nginx configuration 80 port access 8080 and project name address method analysis

Nginx configuration 80 port access 8080 and project name address method analysis

Tomcat accesses the project, usually ip + port + project name

Nginx configures location / {}, which can usually only jump to ip + port. If you want to access the project directly, you need to modify the tomcat configuration.

How to ensure that the port + project name can be accessed without modifying the configuration of tomcat and only modifying nginx

After trying, I found a way to

location / {
proxy_pass http://127.0.0.1:8080/demo;
}

Jump to

location /demo {
proxy_pass http://127.0.0.1:8080;
}

demo is the project name, which is the file name configured under tomcat's webapps

This configuration will only display the project name in the URL address, but what does it matter?

Here is an example configuration:

upstream tomcatproject{
    ip_hash;
    server 11.1.11.11:8080;
    server 22.2.22.22:8080;
  }

  server {
    listen 80;
    #server_name localhost;

    #charset koi8-r;

    #access_log logs/host.access.log main;

    location / {
        proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://tomcatproject/demo;
    }

    location /demo/ {
        proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://tomcatproject;
    }
}

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to configure nginx to ensure that the frps server and web share port 80
  • Solution to nginx configuration of multiple sites sharing port 80
  • Detailed explanation of nginx configuration to share port 80 with multiple tomcats
  • Detailed explanation of configuring multiple WeChat projects under one port 80 in Nginx reverse proxy
  • Detailed explanation of how to configure port forwarding other than port 80 in Nginx server
  • Detailed explanation of how to configure Nginx and Apache to share port 80
  • Blocking port 80: Nginx reverse proxy for WIN2003, super fool-proof configuration

<<:  MySQL 5.7.31 64-bit free installation version tutorial diagram

>>:  Analyze the difference between computed and watch in Vue

Recommend

Detailed explanation of using split command to split Linux files

A few simple Linux commands let you split and rea...

Solution to HTML2 canvas SVG not being recognized

There is a new feature that requires capturing a ...

JavaScript implements the nine-grid mobile puzzle game

This article shares the specific code for JavaScr...

SVG+CSS3 to achieve a dynamic wave effect

A vector wave <svg viewBox="0 0 560 20&qu...

js to achieve 3D carousel effect

This article shares the specific code for impleme...

Three common style selectors in html css

1: Tag selector The tag selector is used for all ...

Detailed explanation of Vue monitoring attribute graphic example

Table of contents What is the listener property? ...

js canvas realizes slider verification

This article example shares the specific code of ...

Implementing a simple calculator with javascript

This article example shares the specific code of ...

10 excellent Web UI libraries/frameworks

1. IT Mill Toolkit IT Mill Toolkit is an open sou...

Vue-cli framework implements timer application

Technical Background This application uses the vu...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

Some parameter descriptions of text input boxes in web design

<br />In general guestbooks, forums and othe...

The basic principles and detailed usage of viewport

1. Overview of viewport Mobile browsers usually r...