Skip to content

Commit

Permalink
CHORE: Add website redirect.
Browse files Browse the repository at this point in the history
  • Loading branch information
genedan committed Sep 7, 2023
1 parent 33f9407 commit 69aaecd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/nginx/reinspy.com.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ server {
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

location = / {
return 301 https://reinspy.com/docs;
}

}
server {
Expand All @@ -32,7 +35,8 @@ server {
server_name reinspy.com www.reinspy.com;
return 404; # managed by Certbot



location = / {
return 301 https://reinspy.com/docs;
}

}

0 comments on commit 69aaecd

Please sign in to comment.