How to deploy vue.js project nginx

php中世界最好的语言
Release: 2018-05-26 15:36:07
Original
1649 people have browsed it

This time I will show you how to deploy vue.js project nginx, and what are the precautions for deploying vue.js project nginx. The following is a practical case, let's take a look.

nginx is a high-performance HTTP and reverse proxy server. Therefore, it is often used as a static resource server and a back-end reverse proxy server. This article mainly records the use of nginx to deploy front-end projects built using vue. The project is built based on vue-cli, the official scaffolding of vue.

The development environment is set up.

2. Compile and deploy

1. Enter the demo command npm run build

## under the project path

#After the compilation is completed, you will find an extra dist folder under the demo folder, which contains the compiled files.


2. Download nginx online, download address http://nginx.org/en/download.html, and unzip the downloaded nginx file.


3. Configure deployment, edit nginx.conf under nginx/conf, and modify it as follows

[/code][

4. Start nginx . In the command window, cd to enter the nginx installation directory and enter start nginx to start nginx.

Then access http://127.0.0.1:8088/ through the browser or http://domain name:8088/


5. nginx stop command:

nginx -s quit

nginx restart command:

nginx -s reload

I believe you have mastered the method after reading the case in this article. For more exciting content, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use js css to achieve typing effects

How to use Sortable in Vue

The above is the detailed content of How to deploy vue.js project nginx. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!