Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Python
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 모두의 파이썬
- 모던자바스크립트
- Concurrently
- node.js로 로그인하기
- react오류
- 거북이 대포 게임
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- node.js 설치
- Colaboratory 글자 깨짐
- react
- spring-boot
- 노드에 리액트 추가하기
- 따라하며 배우는 노드 리액트 기본 강의
- Do it 자바스크립트 + 제이쿼리 입문
- 리액트
- 웹 게임을 만들며 배우는 리액트
- JS 개념
- DB Browser
- Spring-Framework
- 인프런
- props
- 계산맞추기 게임
- 자바스크립트
- intellij
- googleColaboratory
- 타자 게임 만들기
- vs code 내 node
Archives
- Today
- Total
프로그래밍 삽질 중
ubuntu에서 연결한 url가 cannot get으로 나올 경우 본문
* https://ba-gotocode131.tistory.com/184
-> 이전 방식에서 성공적이다가 ubuntu에 연결한 가비아 url가 오류가 있는 경우
-> 1) 포트 번호 확인
-> 2) 메인인 정적파일이 index.html이 맞는지 확인(이 부분이 오류였음)
# 관리자 모드
sudo su
#리버스 프록시를 위한 nginx 설정파일 수정
vi /etc/nginx/sites-available/default
# 수정 시 i(insert 나와야 함) 누르기
location / {
proxy_pass http://127.0.0.1:4000; // 요청을 내부 4000포트로 전달
}
# 저장
esc(버튼 누르기)
:wq!
#저장 후 재시작
service nginx restart
* 참고
https://stackoverflow.com/questions/50780735/ubuntu-node-js-express-server-error-cannot-get-test
'과거 프로그래밍 자료들 > DB(MYSQL)' 카테고리의 다른 글
sequelize는 왜 사용되는가? (0) | 2022.08.25 |
---|---|
ubuntu 터미널 종료 시에도 사이트 유지하기(npm pm2) (0) | 2022.08.12 |
ubuntu에 vscode 연결 + nginx reverse proxy 설정 및 ubuntu에서 생기는 오류 정리 (0) | 2022.08.12 |
ubuntu - mysql - aws 연결 (0) | 2022.08.11 |
리눅스 디렉터리 파일 생성 (배포과정에서 문제 발생) (0) | 2022.08.05 |