Secure Gateway
Secure Gateway는 Roboflow Deployment 서버에 필요한 경로를 회사 DMZ로 프록시하고, 모델 가중치와 컨테이너 이미지를 로컬에 캐시합니다.
마지막 업데이트
도움이 되었나요?
도움이 되었나요?
curl http://localhost/healthdocker run -d --name secure-gateway -p 443:443 --restart unless-stopped \\
-e PORT=443 \\
-e TLS_CERT_FILE=/etc/ssl/certs/gateway.crt \\
-e TLS_KEY_FILE=/etc/ssl/private/gateway.key \\
-v /path/to/certs:/etc/ssl:ro \\
-v gateway-cache:/var/cache/secure-gateway \\
repo.roboflow.com/roboflow-edge/secure-gateway:latest-e TLS_CA_BUNDLE=/etc/ssl/certs/corporate-ca.pemsudo docker run --net=host \\
--env SECURE_GATEWAY=10.0.1.1 \\
roboflow/inference-server:cpu