Skip to content

Commit

Permalink
Bump 2.7.1 and Redirect of alternative domains
Browse files Browse the repository at this point in the history
  • Loading branch information
bitionaire committed Aug 1, 2022
1 parent 25ee97d commit cdf4875
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
server {
# Redirect alternative domains to scrumlr.io
listen ${SCRUMLR_LISTEN_PORT};
listen [::]:${SCRUMLR_LISTEN_PORT};
server_name beta.scrumlr.io scrumler.io scrumlr.de;

location / {
return 301 https://scrumlr.io$request_uri;
}
}

server {
listen ${SCRUMLR_LISTEN_PORT} default_server;
listen [::]:${SCRUMLR_LISTEN_PORT} default_server;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/inovex/scrumlr.io/issues",
"email": "info@scrumlr.io"
},
"version": "2.7.0",
"version": "2.7.1",
"private": true,
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit cdf4875

Please sign in to comment.