From 528cbeb1e5663f07496dac776b4789b6dcd3518a Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 3 Mar 2024 18:35:20 +0000 Subject: [PATCH] Redirect root to website --- nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx.conf b/nginx.conf index c0afa96..839e451 100644 --- a/nginx.conf +++ b/nginx.conf @@ -31,6 +31,10 @@ server { client_max_body_size 128k; reset_timedout_connection on; + location = / { + return 302 https://theorangeone.net; + } + # Expose WebDAV on a sub-path location /.dav/ { alias /srv/;