CentOS Nginx + Vue2 Webpack Simple

1423 단어
1.install PCRE
cd /usr/local/
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.41.tar.gz
tar -zxvf pcre-8.41.tar.gz
cd pcre-8.41
./configure
make
make install

2.install ZLIB
cd /usr/local/
wget http://zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make
make install

3.install OPENSSL
cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz
tar -zxvf openssl-1.0.1j.tar.gz
./configure
make
make install

4.install nginx
cd /usr/local/
wget http://nginx.org/download/nginx-1.8.0.tar.gz
tar -zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0 
./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre-8.41 --with-zlib=/usr/local/zlib-1.2.11
make
make install

5.start nginx
/usr/local/nginx/sbin/nginx

6. 퍼 가기 규칙 설정
vi /usr/local/nginx/conf/nginx.conf
server {
        listen       80;
        server_name  127.0.0.1:8080;

        location / {

            proxy_pass   http://127.0.0.1:8080;
        }

    }

80 - > 8080, 즉 vue - cli webpack - simple 시작 후 기본 포트 로 전송
7. install vue-cli
npm i vue-cli -g
vue init webpack-simple demo-project
cd demo-project
npm install
npm run dev

이렇게 해서 localhost: 8080 을 시작 하여 nginx 에 의 해 전송 되 었 습 니 다.

좋은 웹페이지 즐겨찾기