서버 배치 vue + nginx 설정

nginx 설정
//  nginx.conf    , http        :include vhost/*.conf;           ,    .
include shadow/*.conf;

conf 폴 더 아래 shadow 폴 더 를 만 들 고 shadow 아래 vue. conf 를 만들어 내용 을 넣 습 니 다.
server {
  #  
  listen   80;
  #        
  root /srv/view/dist/;
  index index.html;

  server_name www.shadow.com;

  location / {
    try_files $uri $uri/ /index.html;
  }

  #    
  location /api {
    proxy_redirect off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded $proxy_add_x_forwarded_for;
    proxy_pass http://127.0.0.1:3000;
  }
}
//      :
 location /vue/ {
    try_files $uri $uri/ @router;
}
location @router {
   rewrite ^.*$ /vue/index.html last;
 }

좋은 웹페이지 즐겨찾기