Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit be278d6

Browse files
committed
Merge branch 'release-0.37'
Release v0.37: open.ly domain name **Enhancements:** - Change domain name from openly.one to open.ly
2 parents 808ef77 + e65f3ed commit be278d6

File tree

10 files changed

+33
-28
lines changed

10 files changed

+33
-28
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ env:
3434
global:
3535
- CI=true
3636
- ALL_TESTS=true
37-
- APPLICATION_DOMAIN=openly.one
37+
- APPLICATION_DOMAIN=open.ly
3838
3939
4040

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v0.37 (May 15, 2019)
4+
5+
**Enhancements:**
6+
- Change domain name from openly.one to open.ly
7+
38
## v0.36.4 (Mar 5, 2019)
49

510
**Fixes:**

Diff for: app/assets/images/projects/sharing-settings.jpg

3.62 KB
Loading

Diff for: app/views/static/github_for_documents/index.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279

280280
.col.s6.l4
281281
p
282-
= mail_to 'hello@openly.one', nil, class: 'white-text'
282+
= mail_to 'hello@open.ly', nil, class: 'white-text'
283283
br
284284
br
285285
| Incorporated in Delaware.

Diff for: app/views/static/open_collaboration/index.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676
.col.s6.l4
7777
p
78-
= mail_to 'hello@openly.one', nil, class: 'white-text'
78+
= mail_to 'hello@open.ly', nil, class: 'white-text'
7979
br
8080
br
8181
| We are a public benefit corporation ♥

Diff for: config/nginx.conf

+21-21
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ upstream puma {
44

55
server {
66
listen 443 ssl;
7-
server_name www.openly.one;
8-
ssl_certificate /etc/letsencrypt/live/www.openly.one/fullchain.pem;
9-
ssl_certificate_key /etc/letsencrypt/live/www.openly.one/privkey.pem;
10-
ssl_trusted_certificate /etc/letsencrypt/live/www.openly.one/fullchain.pem;
7+
server_name www.open.ly;
8+
ssl_certificate /etc/letsencrypt/live/www.open.ly/fullchain.pem;
9+
ssl_certificate_key /etc/letsencrypt/live/www.open.ly/privkey.pem;
10+
ssl_trusted_certificate /etc/letsencrypt/live/www.open.ly/fullchain.pem;
1111
ssl_dhparam /etc/ssl/certs/dhparam.pem;
1212
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
1313
ssl_ciphers HIGH:!aNULL:!MD5;
@@ -37,37 +37,37 @@ server {
3737
keepalive_timeout 10;
3838
}
3939

40-
# Redirect https requests from openly.one to www.openly.one
40+
# Redirect https requests from open.ly to www.open.lye
4141
server {
4242
listen 443 ssl;
43-
server_name openly.one;
44-
ssl_certificate /etc/letsencrypt/live/openly.one/fullchain.pem;
45-
ssl_certificate_key /etc/letsencrypt/live/openly.one/privkey.pem;
46-
return 301 https://www.openly.one$request_uri;
43+
server_name open.ly;
44+
ssl_certificate /etc/letsencrypt/live/open.ly/fullchain.pem;
45+
ssl_certificate_key /etc/letsencrypt/live/open.ly/privkey.pem;
46+
return 301 https://www.open.ly$request_uri;
4747
}
4848

49-
# Redirect https requests from www.upshift.one to www.openly.one
49+
# Redirect https requests from www.openly.one to www.open.ly
5050
server {
5151
listen 443 ssl;
52-
server_name www.upshift.one;
53-
ssl_certificate /etc/letsencrypt/live/www.upshift.one/fullchain.pem;
54-
ssl_certificate_key /etc/letsencrypt/live/www.upshift.one/privkey.pem;
55-
return 301 https://www.openly.one$request_uri;
52+
server_name www.openly.one;
53+
ssl_certificate /etc/letsencrypt/live/www.openly.one/fullchain.pem;
54+
ssl_certificate_key /etc/letsencrypt/live/www.openly.one/privkey.pem;
55+
return 301 https://www.open.ly$request_uri;
5656
}
5757

58-
# Redirect https requests from upshift.one to www.openly.one
58+
# Redirect https requests from openly.one to www.open.ly
5959
server {
6060
listen 443 ssl;
61-
server_name upshift.one;
62-
ssl_certificate /etc/letsencrypt/live/upshift.one/fullchain.pem;
63-
ssl_certificate_key /etc/letsencrypt/live/upshift.one/privkey.pem;
64-
return 301 https://www.openly.one$request_uri;
61+
server_name openly.one;
62+
ssl_certificate /etc/letsencrypt/live/openly.one/fullchain.pem;
63+
ssl_certificate_key /etc/letsencrypt/live/openly.one/privkey.pem;
64+
return 301 https://www.open.ly$request_uri;
6565
}
6666

67-
# Redirect all http requests to https://www.openly.one/
67+
# Redirect all http requests to https://www.open.ly/
6868
server {
6969
listen 80 default_server;
7070
server_name _;
7171

72-
return 301 https://www.openly.one$request_uri;
72+
return 301 https://www.open.ly$request_uri;
7373
}

Diff for: spec/mailers/notifications_mailer_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
end
3131

3232
it 'sets the correct sender' do
33-
expect(mail.from).to contain_exactly 'notification@openly.one'
33+
expect(mail.from).to contain_exactly 'notification@open.ly'
3434
expect(mail[:from].display_names).to contain_exactly 'Openly'
3535
end
3636

Diff for: spec/views/errors/internal_server_error.html.erb_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
it 'provides a contact email address' do
1010
render
11-
expect(rendered).to have_selector('a', text: 'hello@openly.one')
11+
expect(rendered).to have_selector('a', text: 'hello@open.ly')
1212
end
1313
end

Diff for: spec/views/errors/not_found.html.erb_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
it 'provides a contact email address' do
1010
render
11-
expect(rendered).to have_selector('a', text: 'hello@openly.one')
11+
expect(rendered).to have_selector('a', text: 'hello@open.ly')
1212
end
1313
end

Diff for: spec/views/errors/unacceptable.html.erb_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
it 'provides a contact email address' do
1010
render
11-
expect(rendered).to have_selector('a', text: 'hello@openly.one')
11+
expect(rendered).to have_selector('a', text: 'hello@open.ly')
1212
end
1313
end

0 commit comments

Comments
 (0)