From 8b9fdd13beeca586cb2bf34e7abfb621708742fd Mon Sep 17 00:00:00 2001 From: Veikka Kähkönen Date: Mon, 25 Sep 2017 15:56:43 +0300 Subject: Dockerize --- nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nginx.conf (limited to 'nginx.conf') diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..02e8dab --- /dev/null +++ b/nginx.conf @@ -0,0 +1,14 @@ +server { + listen 80; + server_name localhost; + + location ~ ^/ { + root /usr/share/nginx/html; + try_files $uri $uri/index.html; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +} -- cgit v1.3