Test project: react-demo
server { listen 8080; # server_name your.domain.com; root /home/root/react-demo/dist; index index.html index.htm; location / { try_files $uri $uri/ /index.html; } location ^~ /assets/ { gzip_static on; expires max; add_header Cache-Control public; } error_page 500 502 503 504 /500.html; client_max_body_size 20M; keepalive_timeout 10; } Execute sudo service nginx restart to restart the Nginx service. Access the project, http://IP:8080/ Note: 1. If you configure the domain name, port 80 is required. After success, you can access the project by simply accessing the domain name 2. If you use the browserHistory mode of React-Router, please add the following configuration to the Nginx configuration: location / { try_files $uri $uri/ /index.html; } Principle, because our project has only one root entry, when entering a URL like /home, the page cannot be found. In this case, nginx will try to load index.html. After loading index.html, react-router will work and match the /home route we entered, thereby displaying the correct home page. If the project in browserHistory mode is not configured with the above content, a 404 error will occur. Please refer to the react-router documentation: https://react-guide.github.io/react-router-cn/docs/guides/basics/Histories.html Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: jQuery realizes the effect of theater seat selection and reservation
>>: The latest version of MySQL5.7.19 decompression version installation guide
1. Overview of file permissions and ownership 1. ...
Table of contents Pull the rocketmq image Create ...
When you send a network request, the following sa...
uniapp code <template> <view> <ima...
Table of contents Preface Case: Imitation of JD.c...
1. Same IP address, different port numbers Virtua...
Nextcloud is an open source and free private clou...
What is a web page? The page displayed after the ...
I searched for three-level linkage on the Interne...
Mysql5.5 dual machine hot standby Implementation ...
Slideshows are often seen on web pages. They have...
Preface I am currently working on a high-quality ...
There are very complex HTML structures in web pag...
1. In the control panel, uninstall all components...
Rendering pipeline with external css files In the...