From e6569f3e7b102f295702ee13b0b8d92dcde8438b Mon Sep 17 00:00:00 2001 From: Patrick Bailey Date: Tue, 6 Sep 2016 09:08:26 -0600 Subject: [PATCH] Create default.conf --- default.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 default.conf diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..3ef07c0 --- /dev/null +++ b/default.conf @@ -0,0 +1,14 @@ +server { + listen 9090; + 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; + } +}