Complete steps for Nginx proxy front-end and back-end separation projects with the same domain name

Complete steps for Nginx proxy front-end and back-end separation projects with the same domain name

The front-end and back-end projects are separated, and the front-end and back-end share a domain name. The front-end and back-end projects are distinguished by the URL prefix after the domain name.

Take the vue + php project as an example. Directly go to the nginx configuration of the server module.

server
 {
 listen 80;
 #listen [::]:80 default_server ipv6only=on;
 server_name demo.com; #Configure project domain name index index.html index.htm index.php;

 # 1. Transfer to the front end for processing location /
 {
  # The static directory after front-end packaging alias /home/wwwroot/default/vue-demo/dist/;
 }

 # 2. Transfer to the backend for processing location /api/ {
  try_files $uri $uri/ /index.php?$query_string;
 }

 # 3. Finally, PHP is transferred to fpm here
 location ~ [^/]\.php(/|$)
 {
  # Backend project directory root /home/wwwroot/default/demo/public/;
  #fastcgi_pass 127.0.0.1:9000;
  fastcgi_pass unix:/tmp/php-cgi.sock;
  fastcgi_index index.php;
  include fastcgi.conf;
  include pathinfo.conf;
 }

 # 4. Processing backend static resources location /public/ {
  alias /home/wwwroot/default/demo/public/uploads/;
 }

 #error_page 404 /404.html;

 access_log /home/wwwlogs/access.log main;
}

Simple explanation

  • When the domain name is followed by the prefix /api/, it will be forwarded to the backend for processing;
  • When the /uploads/ prefix is ​​added after the domain name, the static resources on the backend are accessed.
  • Due to the principle of accurate location matching, all visits other than the above will be forwarded to the first location to access the front-end page.

For example:

Access article list interface

GET https://demo.com/api/posts

Access uploaded images

GET upload/2022/web/xxx.jpg

Visit the front-end homepage

GET https://demo.com/

Visit the article page

GET https://demo.com/posts

PS: There must be a / at the end of the alias path.

Summarize

This is the end of this article about the Nginx proxy same domain name front-end and back-end separation project. For more related Nginx proxy same domain name front-end and back-end separation project content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Thinking and practice of front-end and back-end separation based on NodeJS (VI) Software stack deployment practice of Nginx + Node.js + Java
  • Complete steps for deploying a front-end and back-end separated nginx configuration
  • Sample code for separating front-end and back-end using nginx+vue.js
  • Nginx realizes front-end and back-end separation
  • Detailed explanation of the front-end and back-end deployment tutorial based on Vue and Nginx

<<:  Detailed explanation of the execution differences between count(1), count(*) and count(column name)

>>:  Vue3 encapsulates the side navigation text skeleton effect component

Recommend

What is web design

<br />Original article: http://www.alistapar...

Alibaba Cloud Centos7 installation and configuration of SVN

1. Install SVN server yum install subversion 2. C...

Example code for implementing fullpage.js full-screen scrolling effect with CSS

When I was studying CSS recently, I found that I ...

Summary of mysqladmin daily management commands under MySQL (must read)

The usage format of the mysqladmin tool is: mysql...

CSS shadow animation optimization tips

This technique comes from this article - How to a...

Vue.js performance optimization N tips (worth collecting)

Table of contents Functionalcomponents Childcompo...

Steps for Django to connect to local MySQL database (pycharm)

Step 1: Change DATABASES in setting.py # Configur...

Analyze the working principle of Tomcat

SpringBoot is like a giant python, slowly winding...

Solve the problem when setting the date to 0000-00-00 00:00:00 in MySQL 8.0.13

I just started learning database operations. Toda...

Why is it not recommended to use an empty string as a className in Vue?

Table of contents Compare the empty string '&...

Detailed explanation of Linux file operation knowledge points

Related system calls for file operations create i...

Solutions to the Problem of Creating XHTML and CSS Web Pages

The solutions to the problems encountered during x...

What are the benefits of using // instead of http:// (adaptive https)

//Default protocol /The use of the default protoc...