From f29c4cc340c7ae5d84f6e60eeb971a3ca314ebaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Thu, 25 Apr 2019 10:16:03 +0200 Subject: [PATCH] fix config file --- Nginx-S2I-Image/nginx.conf | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Nginx-S2I-Image/nginx.conf b/Nginx-S2I-Image/nginx.conf index 148b2b3..4464d21 100644 --- a/Nginx-S2I-Image/nginx.conf +++ b/Nginx-S2I-Image/nginx.conf @@ -39,23 +39,10 @@ http { server { listen 8080 default_server; - listen [::]:8080 default_server; server_name _; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; - - location / { - return 301 http://openshift.com; - } - - error_page 404 /404.html; - location = /40x.html { - } - - error_page 500 502 503 504 /50x.html; - location = /50x.html { - } } }