하기 구문 추가 ( 파일이 없는 경우 생성 ) "insecure-registries" : ["아이피:포트"] 예제 ) "insecure-registries" : ["192.168.0.123:5000"] * 위치 리눅스 - 링크 참조 https://github.com/Juniper/contrail-docker/wiki/Configure-docker-service-to-use-insecure-registry GitHub - Juniper/contrail-docker Contribute to Juniper/contrail-docker development by creating an account on GitHub. github.com * 위치 Windows - Docker Desktop -> 파일 위치 (탐색..
System.InvalidOperationException: 'Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date. To generate a developer certificate run 'dotnet dev-certs https'. 1. 인증서 문제 ubuntu - Docker image: Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate coul..
IIS 에서 보안 채널중 SSL 3.0, SSL 2.0, TLS 1.0 을 미사용으로 변경후 TLS 1.1, TLS 1.2를 적용할때 WebService와 통신이 안되는 문제를 해결 하는 방법입니다. ( IIS Crypto 2.0 으로 설정시 https 통신에 문제가 생기더군요.) .NetFramework 4.5.1 이상 버전부터 ServicePointManager.SecurityProtocol 에서 Tls11, Tls12 이 생겼습니다. 아래 내용은 적용 하는 부분 입니다. static class Program { /// /// 해당 응용 프로그램의 주 진입점입니다. /// [STAThread] static void Main() { // ------------------------------------..