Skip to content

Commit

Permalink
Remove support for some old unused domains
Browse files Browse the repository at this point in the history
  • Loading branch information
optionsome committed Jan 21, 2022
1 parent 814cabd commit cb34050
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 deletions.
11 changes: 2 additions & 9 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,7 @@ http {
}

server {
server_name vanha.reittiopas.hsl.fi;
listen 8080;

return 301 https://reittiopas.hsl.fi/etusivu;
}

server {
server_name www.reittiopas.fi m.reittiopas.fi reittiopas.fi uusi.reittiopas.fi uusi.reittiopas.hsl.fi;
server_name www.reittiopas.fi reittiopas.fi;
listen 8080;

# Prevent search engines from indexing the site
Expand Down Expand Up @@ -113,7 +106,7 @@ http {
}

server {
server_name dev.digitransit.fi beta.digitransit.fi opas.matka.fi;
server_name dev.digitransit.fi opas.matka.fi;
listen 8080;

if ($http_x_forwarded_proto != "https") {
Expand Down
9 changes: 1 addition & 8 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,10 @@ describe('hsl ui', function() {
testResponseHeader('www.reittiopas.fi','/', 'x-robots-tag', 'noindex, nofollow, nosnippet, noarchive');
testRedirect('reittiopas.fi','/haku','https://reittiopas.hsl.fi/haku');
testResponseHeader('www.reittiopas.fi','/haku', 'X-Frame-Options', undefined);
testRedirect('m.reittiopas.fi','/kissa','https://reittiopas.hsl.fi/kissa');
testRedirect('dev.reittiopas.fi','/kissa','https://dev.reittiopas.fi/kissa');

it('https should not redirect', function(done) {
httpsGet('beta.digitransit.fi','/kissa').end((err,res)=>{
httpsGet('reittiopas.hsl.fi','/kissa').end((err,res)=>{
expect(err).to.be.null;
done();
});
Expand All @@ -181,18 +180,12 @@ describe('hsl ui', function() {

testCaching('reittiopas.hsl.fi','/sw.js', true);

testRedirect('vanha.reittiopas.hsl.fi','/','https://reittiopas.hsl.fi/etusivu');

//next-dev site
testRedirect('www.next-dev.digitransit.fi','/kissa','http://next-dev.digitransit.fi/kissa');
testRedirect('next-dev.digitransit.fi','/kissa','https://next-dev.digitransit.fi/kissa');
testRedirect('next-dev.digitransit.fi','/','https://uusi.hsl.fi/?fromJourneyPlanner=true', true);
testProxying('next-dev.digitransit.fi','/kissa','digitransit-ui-hsl-v3:8080', true);
testCaching('next-dev.digitransit.fi','/sw.js', true);
testRedirect('uusi.reittiopas.hsl.fi','/','https://uusi.hsl.fi/?fromJourneyPlanner=true', true);
testRedirect('uusi.reittiopas.hsl.fi','/kissa','https://reittiopas.hsl.fi/kissa', true);

testRedirect('uusi.reittiopas.fi','/kissa','https://reittiopas.hsl.fi/kissa');
});

describe('matka ui', function() {
Expand Down

0 comments on commit cb34050

Please sign in to comment.