kairo
Kairo is a self-contained implementation of the split-routing gateway described by bepass-org/smartSNI. It bundles a DNS server with a policy engine and an SNI router into one binary.
파일 탐색기
- release.yml
- main.go
- allowed.txt
- domain.txt
- domains.txt
- api.md
- configuration.md
- operations.md
- overview.md
- security.md
- setup.md
- acme.go
- config.go
- generate.go
- generate_test.go
- migrate.go
- migrate_test.go
- connectionlog.go
- db.go
- domain_request.go
- legacyip.go
- migrate_legacy_test.go
- session.go
- user.go
- user_ip.go
- fileutil.go
- logx.go
- metrics.go
- netutil.go
- resolve.go
- api.go
- auth.go
- dns.go
- http.go
- server.go
- server_test.go
- status.tmpl
- sni.go
- sni_test.go
- state.go
- state_test.go
- version.go
- favicon.svg
- icons.svg
- hero.png
- vite.svg
- BarChart.tsx
- EmptyState.tsx
- Modal.tsx
- Skeleton.tsx
- Toast.tsx
- Layout.tsx
- MyIPsCard.tsx
- i18n.tsx
- theme.tsx
- Domains.tsx
- Overview.tsx
- Users.tsx
- Dashboard.tsx
- Guide.tsx
- Login.tsx
- Traffic.tsx
- api.ts
- App.tsx
- index.css
- main.tsx
- .gitignore
- .oxlintrc.json
- bun.lock
- bunfig.toml
- index.html
- package.json
- README.md
- tsconfig.app.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- .dockerignore
- .gitignore
- config.yaml.sample
- docker-compose.yml
- Dockerfile
- go.mod
- go.sum
- LICENSE
- nginx.conf.example
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
docker compose up
설명 보기 ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
go build
설명 보기 ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
host
설명 보기 ▼
host
도메인 네임 서버 조회.
관련 항목: `dig`, `resolvectl`, `nslookup`.
더 많은 정보: <https://manned.org/host>.
host {{domain}}
도메인의 A, AAAA 및 MX 레코드 조회:
host -t {{field}} {{domain}}
도메인의 필드 (CNAME, TXT, ...) 조회:
host {{ip_address}}
IP 역방향 조회:
