Skip to content

Commit d5dbbfb

Browse files
committed
frontend: use HTTPS for production environments
1 parent 71e1f73 commit d5dbbfb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

frontend/src/assets/environments/production.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ export default {
1818
configs: [
1919
{
2020
name: 'o1Labs Plain Node 1',
21-
url: 'http://mina-rust-plain-1.gcp.o1test.net/graphql',
21+
url: 'https://mina-rust-plain-1.gcp.o1test.net/',
2222
},
2323
{
2424
name: 'o1Labs Plain Node 2',
25-
url: 'http://mina-rust-plain-2.gcp.o1test.net/graphql',
25+
url: 'https://mina-rust-plain-2.gcp.o1test.net/',
2626
},
2727
{
2828
name: 'o1Labs Plain Node 3',
29-
url: 'http://mina-rust-plain-3.gcp.o1test.net/graphql',
29+
url: 'https://mina-rust-plain-3.gcp.o1test.net/',
3030
},
3131
],
3232
};

frontend/src/environments/environment.prod.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ export const environment: Readonly<MinaEnv> = {
2525
configs: [
2626
{
2727
name: 'o1Labs Plain Node 1',
28-
url: 'http://mina-rust-plain-1.gcp.o1test.net/',
28+
url: 'https://mina-rust-plain-1.gcp.o1test.net/',
2929
},
3030
{
3131
name: 'o1Labs Plain Node 2',
32-
url: 'http://mina-rust-plain-2.gcp.o1test.net/',
32+
url: 'https://mina-rust-plain-2.gcp.o1test.net/',
3333
},
3434
{
3535
name: 'o1Labs Plain Node 3',
36-
url: 'http://mina-rust-plain-3.gcp.o1test.net/',
36+
url: 'https://mina-rust-plain-3.gcp.o1test.net/',
3737
},
3838
],
3939
sentry: undefined,

0 commit comments

Comments
 (0)