http*: add Korean translation (#14608)

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
HoJeong Im
2024-11-04 12:59:57 +09:00
committed by GitHub
parent 241d4314d8
commit a4b755fe73
10 changed files with 250 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# http-server-upload
> 파일 업로드를 위한 경량 인터페이스를 제공하는 구성이 필요없는 커멘트라인 HTTP 서버.
> 더 많은 정보: <https://github.com/crycode-de/http-server-upload>.
- 기본 포트에서 HTTP 서버를 시작하여 현재 디렉터리에 파일을 업로드:
`http-server-upload`
- MiB 단위로 지정된 최대 허용 파일 크기로 HTTP 서버를 시작 (기본값 200 MiB):
`MAX_FILE_SIZE={{size_in_megabytes}} http-server-upload`
- 특정 포트에서 HTTP 서버를 시작해 현재 디렉터리에 파일을 업로드:
`PORT={{포트}} http-server-upload`
- HTTP 서버를 시작하고, 업로드된 파일을 특정 디렉터리에 저장:
`UPLOAD_DIR={{경로/대상/디렉터리}} http-server-upload`
- 업로드 중에 파일을 임시로 저장하기 위해 특정 디렉터리를 사용하여 HTTP 서버를 시작:
`UPLOAD_TMP_DIR={{경로/대상/디렉터리}} http-server-upload`
- HTTP post의 특정 토큰 필드를 사용하여 업로드를 허용하는 HTTP 서버를 시작:
`TOKEN={{secret}} http-server-upload`