vue - cli 프로젝트 패키지 후 프 록 시 인터페이스 404 오류 해결 방법!

569 단어
1. nginx 시작
         cd usr/local/nginx/sbin
        ./nginx
2. nginx 설치 디 렉 터 리 찾기
    whereis nginx
    cd usr/local/nginx/
3 、 nginx 프로필 열기
    cd conf/
    vi nginx.conf    i 로 변경, 추가 설정
location /api {
                proxy_set_header   Host             $host;
                proxy_set_header   x-forwarded-for  $remote_addr;
                proxy_set_header   X-Real-IP        $remote_addr;
                proxy_pass http://XXX.XX.XX.XXX:XXXX; //     
        }    

좋은 웹페이지 즐겨찾기