게시글
질문&답변
한 서버에 백엔드와 프론트 둘 다 배포하려면 어떻게 해야하나요?
한 서버에 둘 다 두고 pm2로 각각 실행시켰습니다. 그리고 nginx로 아래와 같이 설정했는데요. 아래 주소로는 들어가지는데요 http://dev-life.kr/api/ 아래 주소로는 들어가지지 않는 상황입니다. http://dev-life.kr/ 이게 강의영역은 아니라서 물어보는게 실례지만 조언좀 부탁드립니다. server { server_name dev-life.kr; location = / { # handle root if ($request_uri != "/") { # ensure $query_string and $is_args are not allowed return 403 "403: query_string not allowed\n"; } } location / { proxy_set_header HOST $host; # proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://127.0.0.1:3060; proxy_redirect off; } location /api/ { # proxy_set_header HOST $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; rewrite ^/api/?(.*) /$1 break; # proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://127.0.0.1:3065; proxy_redirect off; } }
- 0
- 3
- 2.8K
질문&답변
파일 확장자를 js 대신 jsx를 써도 되나요?
넵 감사합니다.
- 0
- 4
- 621
질문&답변
파일 확장자를 js 대신 jsx를 써도 되나요?
혹시 추천하시는 이유를 여쭤볼 수 있을까요?
- 0
- 4
- 621