From 9e1d5b31211e9807dce883546562940423e95b04 Mon Sep 17 00:00:00 2001 From: Wilkin van Roosmalen Date: Fri, 14 Jun 2024 11:50:31 +0200 Subject: [PATCH] Revert "Add default nginx config" This reverts commit bbcd0f4ab568f20a8a880569d462203aede78ce5. --- nginx-default.conf | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 nginx-default.conf diff --git a/nginx-default.conf b/nginx-default.conf deleted file mode 100644 index db061ab..0000000 --- a/nginx-default.conf +++ /dev/null @@ -1,15 +0,0 @@ -server { - listen 8080; - server_name localhost; - - location / { - root /usr/share/nginx/html; - index index.html index.htm; - } - - error_page 500 502 503 504 /50x.html; - location = /50x.html { - root /usr/share/nginx/html; - } - -}