From d94e8871f5d425d3505c4d3d60cd8d74496c515d Mon Sep 17 00:00:00 2001 From: Adam Samalik Date: Jul 30 2019 09:01:22 +0000 Subject: fix local preview --- diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..f7093b3 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,14 @@ +server { + listen 80; + server_name localhost; + + location / { + root /antora/public; + index index.html index.htm; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +}