분류 전체보기 105

nginx 배포 및 인증서 등록 (https)

nginx 삭제 $ sudo apt-get purge nginx nginx-common nginx-full nginx 설치 $ sudo apt-get install nginx $ cd /etc/nginx $ ls -al 여기서 중요한 것은 nginx.conf : 설정 파일 sites-available : 폴더 설정 파일 저장소 sites-enabled : 설정파일 실행. $ cd sites-available $ sudo vi default server { listen 80; server_name seong-jin.net; location / { proxy_set_header HOST $host; proxy_pass http://127.0.0.1:3003; proxy_redirect off; } } ngi..

카테고리 없음 2022.05.17

React 'react-query' 사용기

$ npx create-react-app [파일명] 으로 react 프로젝트를 생성한다. src 폴더 안에 app.js , index.js , index.css 파일 빼고 삭제 해준다. src 폴더 안에 components 폴더를 만들고 Navbar.js,People.js ,Planets.js 파일을 생성해 준다. app.js import React,{useState} from "react"; import Navbar from "./components/Navbar"; import Planets from "./components/Planets" import People from "./components/People" function App() { const [page, setPage] = useState(..

카테고리 없음 2022.05.05

IPFS 설치

아래 링크에서 본인에게 맞는 파일을 다운 받는다. https://dist.ipfs.io/#go-ipfs IPFS Distributions go-ipfs is the main implementation of IPFS. It includes: an IPFS core implementation an IPFS daemon server extensive command line tooling an HTTP API for controlling the node an HTTP Gateway for serving content to HTTP browsers dist.ipfs.io 다운 받은 파일의 압축을 푼다. mac 에 경우 파일로 들어가서 파일을 실행 시켜준다. 버젼이 잘 나오면 잘 설치 된 것이다. IPFS Desk..

카테고리 없음 2022.02.07

mongodb

mongo db 의 장단점 https://dalsacoo-log.tistory.com/entry/mongoDB-1-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-%EC%86%8C%EA%B0%9C-%EC%9E%A5%EB%8B%A8%EC%A0%90-%EC%84%A4%EC%B9%98 [mongoDB] 1. 시작하기 (소개, SQL vs NoSQL, 특징, 설치) mongoDB 소개 mongoDB의 공식홈페이지에서 다음과같이 소개하고 있습니다. MongoDB는 document 데이터베이스로, JSON과 같은 document에 데이터를 저장합니다. 이것은 데이터에 대해 생각하는 가장 자연스러 dalsacoo-log.tistory.com https://edu.goorm.io/learn/lectu..

카테고리 없음 2022.02.07

IPFS

IPFS 란? ( InterPlanetary File System ) 분산형 파일 시스템에 데이터를 저장하고 인터넷으로 공유하기 위한 프로토콜 냅스터,토렌트 등 p2p방식으로 대용량 파일과 데이터를 공유하기 위해 사용한다. 기존의 http 방식은 데이터가 위치한 곳의 주소를 찾아가서 원하는 콘텐츠를 한꺼번에 가져오는 방식 IPFS는 데이터의 내용을 변환한 해시값을 이용하여 전세계 여러 컴퓨터에 분산 저장되어 있는 콘텐츠를 찾아서 데이터를 조각조각으로 잘게 나눠서 빠른 속도로 가져온 후 하나로 합쳐서 보여주는 방식으로 작동 https://kadensungbincho.tistory.com/66 IPFS란? (InterPlanetary File System) IPFS (InterPlanetary File Sy..

카테고리 없음 2022.01.25