The pitfalls of deploying Angular projects in Nginx

The pitfalls of deploying Angular projects in Nginx

Searching online for methods to deploy Angular projects to Nginx after compilation, most articles describe the need to specify a jump to the home page in location of the Nginx configuration file to avoid the problem of 404 caused by refresh. The complete server code is:

server {
 listen 80;
 server_name 192.168.190.131;

 #sendfile on;
 #charset koi8-r;
 access_log /var/log/nginx/host.access.log main;

 location / {
  root /chanchaw/app/angular;
  index index.html index.html;
  try_files $uri $uri/ /index.html;
 }

 error_page 404 /index.html;

 location = /index.html {
  root /chanchaw/app/angular;
 }
}

server_name above is followed by the IP address of CentOS7.3 . Pay special attention to the following location : try_files $uri $uri/ /index.html . This is to prevent 404 errors caused by refreshing the browser. Now here comes the point. After deploying to Nginx , the browser test has the following problems:

index.html and js files are in the same directory, so why can't they be found? chrome is like this, firefox is like this too, okay, let's try IE.

solve

It turns out that chrome and firefox will automatically convert http to https to make requests, and CentOS I used for the experiment was installed in a virtual machine, and I never thought about deploying ssl . Since ie does not convert protocols, there is no problem testing on ie .

You may also be interested in:
  • Record the entire process of Angular project from creation, packaging to nginx deployment

<<:  Detailed explanation of NodeJS modularity

>>:  Example of how to enable Slow query in MySQL

Recommend

The difference between where and on in MySQL and when to use them

When I was writing join table queries before, I a...

Introduction to 10 online development tools for web design

1. Online Text Generator BlindTextGenerator: For ...

Use Docker Compose to quickly deploy ELK (tested and effective)

Table of contents 1. Overview 1.1 Definition 1.2 ...

HTML 5 Preview

<br />Original: http://www.alistapart.com/ar...

A detailed summary of HTML tag nesting rules suitable for beginners

I have been relearning HTML recently, which can be...

docker-maven-plugin packages the image and uploads it to a private warehouse

Table of contents 1. Introduction to docker-maven...

How to remotely connect to MySQL database with Navicat Premium

The party that creates a new connection is equiva...

Convert XHTML CSS pages to printer pages

In the past, creating a printer-friendly version ...

Example of how to generate random numbers and concatenate strings in MySQL

This article uses an example to describe how MySQ...

Detailed introduction to MySQL database index

Table of contents Mind Map Simple understanding E...

CentOS 7 installation and configuration tutorial under VMware10

If Ubuntu is the most popular Linux operating sys...