본문 바로가기

반응형

프로젝트 설정/기타

(21)
[ngrok] ngrok이란? (feat. Webhook 테스트 하기) 1. ngrok이란?ngrok은 로컬에서 실행 중인 서버를 외부에서 접근 가능하게 해주는 터널링 도구입니다.인터넷에서 접근 가능한 주소(URL)를 생성하여 로컬 호스트를 외부에 노출시킬 수 있습니다.2. ngrok의 사용하는 예시1) 로컬 서버 외부 공개로컬에서 개발 중인 웹사이트를 외부 사용자에게 공유하고자 할 때 사용됩니다.2) Webhook 테스트Stripe, GitHub, Slack 등에서 로컬로 이벤트를 받아야 할 때 외부 접속용 주소로 활용합니다.3) 모바일 앱 로컬 서버 접근앱이 로컬 서버의 데이터를 사용해야 할 경우, ngrok을 통해 쉽게 접근 가능하게 할 수 있습니다.4) 원격 디버깅/테스트QA나 클라이언트가 로컬 서버를 직접 테스트할 수 있도록 주소를 공유할 수 있습니다.5) 단기 외..
[FTP] FTP 서버 연결하기 (client) ubuntu 20.04 #!/bin/bash sudo apt install curlftpfs sudo curlftpfs ftp://"id":"pw"@address:port/server_file_address /client_file_address -o option # example sudo curlftpfs ftp://"test":"test123"@127.0.0.1:21/user/test /testuser/ -o allow_other
[iOS] Xcode12 Build Error https://jusung.github.io/Xcode12-Build-Error/ [Xcode] Xcode12에서 시뮬레이터 빌드 오류 원인 및 해결방법 이번 포스트에서는 Xcode12에서 시뮬레이터에 빌드시 오류가 발생하는 원인과 해결방법에 대해 알아 보겠습니다. 포스트가 제법 깁니다. 😅 jusung.github.io https://stackoverflow.com/questions/63646607/xcode-12-using-firebase-pods-lexical-or-preprocessor-issue-pb-h-file-not-fou
[redis] windows redis 설치 redis 설치 https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100 Redis-x64-3.2.100.msi 체크!!! Add the Redis installation folder to the PATH environment variable. redis down https://pypi.org/project/redis3/
[Docker] Docker 사용기 (python) 설명은 잘되어있는곳이 너무 많다. 그저 이것은 도커 초보의 docker 사용내역이다. 1. image 파일 찾기 1.1. 도커 허브에서 원하는 이미지를 찾는다. https://hub.docker.com/_/python?tab=tags&page=1&name=3.7 python Tags | Docker Hub hub.docker.com 1.2. Tag(버전) 선택하기 View Avilable Tags 등을 확인하여 version 및 상세정보 등등을 확인 후 내가 원하는 tag를 복사하자 2. image 다운 받기 2.1 docker pull docker pull을 이용하여 이미지를 다운받는다. # TEST 환경 Ubuntu 18.04.6 LTS sudo docker pull repository:tag # e..
[NGINX] 꿀 사이트 https://techexpert.tips/ko/nginx-ko/nginx-ssl-tls-1-0-%eb%b0%8f-tls-1-1%ec%9d%84-%ec%82%ac%ec%9a%a9%ed%95%98%ec%a7%80-%ec%95%8a%eb%8f%84%eb%a1%9d-%ec%84%a4%ec%a0%95/ 튜토리얼 Nginx - SSL, TLS 1.0 및 TLS 1.1을 비활성화 [ 단계별] 5분 이내에 Nginx 서버에서 SSL, TLS1 및 TLS 1.1 프로토콜사용을 비활성화하는 방법을 알아봅니다. techexpert.tips
Nginx 재기동, restart vs reload https://medium.com/sjk5766/nginx-%EC%A4%91%EB%8B%A8-%EC%97%86%EC%9D%B4-%EB%B3%80%EA%B2%BD%EB%90%9C-%EC%84%A4%EC%A0%95-%EB%B0%98%EC%98%81%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95-b0cc36a5fe59 Nginx 중단 없이 변경된 설정 반영하는 방법 그 동안 Nginx conf 설정을 바꿀 경우, service nginx restart와 같은 명령어로 재 기동을 해야만 변경된 conf가 반영되는 줄 알았습니다. 헌데 아니네요. medium.com
[Docker] 도커 이미지 생성/검색/다운로드/삭제 (ubuntu) Docker Docs 명령어 https://docs.docker.com/engine/reference/commandline/images/ docker images docker images: The default `docker images` will show all top level images, their repository and tags, and their size. Docker images have intermediate layers that increase reusability, decrease disk usage,... docs.docker.com 1. 이미지 목록 확인 (images) 도커 이미지 확인 docker image check docker images [OPTIONS] [REPOSIT..

반응형