aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorcremesk <ennik@envs.net>2019-07-26 23:59:10 +0200
committercremesk <ennik@envs.net>2019-07-26 23:59:10 +0200
commitb81f6229e80641eb6ada23fa0646190c7130be1d (patch)
tree2ebd08b2aa8eb644281004f9036cd83f51975c8c /config
parentadd tomasino pastebin service (diff)
downloadhex-zero-b81f6229e80641eb6ada23fa0646190c7130be1d.tar.gz
hex-zero-b81f6229e80641eb6ada23fa0646190c7130be1d.tar.bz2
hex-zero-b81f6229e80641eb6ada23fa0646190c7130be1d.zip
add gopher support
update requirements and change small typos
Diffstat (limited to 'config')
-rw-r--r--config/nginx.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nginx.conf b/config/nginx.conf
index c10583d..001f903 100644
--- a/config/nginx.conf
+++ b/config/nginx.conf
@@ -7,7 +7,7 @@ server {
error_log /var/log/nginx/0x0.envs.net-error.log;
location / {
- return 301 https://$host$request_uri;
+ return 307 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {
bgstack15