라이선스 서버

Roboflow 라이선스 서버를 사용하여 회사의 DMZ로 Roboflow 배포 서버에 필요한 경로를 프록시할 수 있습니다.

라이선스 서버를 Roboflow API의 프록시로 사용하세요.

License Server 사용하기

Roboflow Inference Server를 인터넷으로부터 방화벽 뒤에 두고 싶다면, Roboflow API와 모델의 가중치에 대한 프록시 역할을 하는 Roboflow License Server를 사용해야 합니다.

다음에 접근할 수 있는 머신에서 https://api.roboflow.comhttps://storage.googleapis.com (그리고 포트 80 가 프라이빗 네트워크에서 실행 중인 Inference Server에 열려 있다면) License Server Docker 컨테이너를 pull 하세요:

sudo docker pull roboflow/license-server

그리고 실행하세요:

sudo docker run --net=host roboflow/license-server

Inference Server가 이 License Server를 사용하도록, 해당 IP를 LICENSE_SERVER 환경 변수로 전달하세요:

sudo docker run --net=host --env LICENSE_SERVER=10.0.1.1 roboflow/inference-server:cpu

Last updated

Was this helpful?