diff options
Diffstat (limited to 'nginx.conf')
| -rw-r--r-- | nginx.conf | 14 |
1 files changed, 14 insertions, 0 deletions
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; + } +} |
