1. Install and start nginx# Install nginx sudo apt-get install nginx # Start sudo service nginx start Verify Installation # After the installation is complete, use nginx -v to check. If the output of nginx version information indicates that the installation is successful nginx -v # If the output is similar to this version number, the installation is complete nginx version: nginx/1.14.0 (Ubuntu) 2. Modify the nginx configuration file and deploy the project Check the configuration of nginx. The configuration files under Linux system are usually stored in the nginx directory under the /etc directory. Use the editor that comes with the connection tool to open or vim Check whether nginx configuration is correct sudo nginx -t Successful will appear.
Load nginx configuration sudo nginx -s reload If the project is configured with cross-domain API, please continue to see point 3, otherwise just go to point 4 to access the project 3. Configure the proxy APIGenerally, projects with separated front-end and back-end need to be cross-domain Or edit the /etc/nginx/sites-available/default file #The request address in the vue project needs to be preceded by api #Proxy configuration for initiating requests, all addresses containing /api are replaced and forwarded to the address under proxy_pass location /api/ { rewrite ^/b/(.*)$ /$1 break; proxy_pass http://www.ifyyf.com/; } As shown You can proxy to the original cross-domain proxy of vue.config.js 4. Access the projectOpen the server's ip or domain name to access the project 5. Secondary menu 404 problemvim opens the default file
Modified to
This is the end of this article about deploying vue projects and configuring proxies on Nginx. For more information about deploying vue projects on Nginx, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML text box (text) is not available in multiple ways to achieve read-only
>>: Detailed explanation of how to use JS to achieve the effect of PS eraser scratch card in canvas
This article installs Google Input Method. In fac...
Table of contents The essence of QR code login Un...
It’s National Day, and everyone is eager to celeb...
Preface Sass is an extension of the CSS3 language...
Problem Description The MySQL startup error messa...
Previously, https://www.jb51.net/article/205922.h...
Table of contents Preface vue-cli 2.0 version vue...
Table of contents 1. What is a window function? 1...
I recently came into contact with MySQL. Yesterda...
When I first started, I found a lot of errors. In...
This article shares the MySQL 5.7 installation an...
Redis uses the apline (Alps) image of Redis versi...
Table of contents Structural inheritance (impleme...
Table of contents 1. Through HBuilderX visual int...
download http://nginx.org/en/download.html Unzip ...