From 3cecfd5ab7024e9bd616b010f73d95ca05b23a9f Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Tue, 29 Oct 2019 10:21:50 -0400 Subject: [PATCH] Going back to .html as default --- Dockerfile | 2 +- etc/nginx/conf.d/{default.conf => cs4430.conf} | 0 var/www/{index.php => index.html} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename etc/nginx/conf.d/{default.conf => cs4430.conf} (100%) rename var/www/{index.php => index.html} (100%) diff --git a/Dockerfile b/Dockerfile index 43570ea..b5f5408 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins && rm -rf /var/www/html \ && rm /etc/nginx/sites-enabled/default -# Copying in default nginx configuration +# Copying in nginx configuration COPY /etc/ /etc/ # Setting up MySQL --Will come back to later, as it's not necessary and not playing very well with automation diff --git a/etc/nginx/conf.d/default.conf b/etc/nginx/conf.d/cs4430.conf similarity index 100% rename from etc/nginx/conf.d/default.conf rename to etc/nginx/conf.d/cs4430.conf diff --git a/var/www/index.php b/var/www/index.html similarity index 100% rename from var/www/index.php rename to var/www/index.html