devcontainer-cli-port-forwarder
Enable Port Forwarding when using DevContainer CLI
파일 탐색기
- forwarder.py
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
socat
설명 보기 ▼
socat
다목적 릴레이(SOcket CAT).
더 많은 정보: <http://www.dest-unreach.org/socat/>.
sudo socat - TCP-LISTEN:8080,fork
포트를 수신 대기하고 연결을 기다리며 데이터를 표준 입력/출력으로 전송:
sudo socat OPENSSL-LISTEN:4433,reuseaddr,cert=./cert.pem,cafile=./ca.cert.pem,key=./key.pem,verify=0 STDOUT
SSL을 사용하여 포트를 수신 대기하고 표준 출력으로 출력:
sudo socat - TCP4:www.example.com:80
호스트와 포트에 연결을 생성하고 표준 입력/출력의 데이터를 연결된 호스트로 전송:
