diff --git a/Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/Dockerfile b/Istio/99-resources/HTTPS-NGINX-DOCKERFILE/Dockerfile similarity index 70% rename from Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/Dockerfile rename to Istio/99-resources/HTTPS-NGINX-DOCKERFILE/Dockerfile index e3df53b..f8ecbf1 100644 --- a/Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/Dockerfile +++ b/Istio/99-resources/HTTPS-NGINX-DOCKERFILE/Dockerfile @@ -2,11 +2,6 @@ FROM nginx ADD server.conf /etc/nginx/conf.d/default.conf -# RUN apt-get update && \ -# apt-get install apache2 openssl -y && \ -# a2ensite default-ssl && \ -# a2enmod ssl && \ - RUN mkdir -p /var/www/html RUN echo "

Howdy

" | tee /var/www/html/index.html diff --git a/Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/server.conf b/Istio/99-resources/HTTPS-NGINX-DOCKERFILE/server.conf similarity index 92% rename from Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/server.conf rename to Istio/99-resources/HTTPS-NGINX-DOCKERFILE/server.conf index 1b7c17a..6904874 100644 --- a/Istio/02-Traffic_management/__XX-TLS-PASSTHROUGH/server.conf +++ b/Istio/99-resources/HTTPS-NGINX-DOCKERFILE/server.conf @@ -1,6 +1,5 @@ server { listen 80; -# rewrite ^ https://$server_name$request_uri? permanent; server_name lb.net;