From 8bbcb599cb9a9af748864a2b61db0ea611523236 Mon Sep 17 00:00:00 2001 From: Konrad Kleine Date: Tue, 30 Sep 2014 14:34:38 +0200 Subject: [PATCH] Removed old nginx config --- nginx-site-ssl.conf | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 nginx-site-ssl.conf diff --git a/nginx-site-ssl.conf b/nginx-site-ssl.conf deleted file mode 100644 index 7a2d070..0000000 --- a/nginx-site-ssl.conf +++ /dev/null @@ -1,28 +0,0 @@ -server { - listen 443 ssl; - server_name localhost; - - ssl on; - ssl_certificate /etc/nginx/ssl/server.crt; - ssl_certificate_key /etc/nginx/ssl/server.key; - - ssl_session_cache shared:SSL:1m; - ssl_session_timeout 5m; - - ssl_ciphers HIGH:!aNULL:!MD5; - ssl_prefer_server_ciphers on; - - location / { - root html; - index index.html index.htm; - } - - error_page 404 /404.html; - - # Proxy all docker REST API registry requests to the - # docker registry server. - location ^~ /v1/ { - proxy_pass ${DOCKER_REGISTRY_URL}; - } -} -