From b7a0f92aee7ba62482879d29c08f21321bf011fe Mon Sep 17 00:00:00 2001 From: apostolof Date: Wed, 17 Feb 2021 23:17:05 +0200 Subject: [PATCH] fix: fix services ports --- jenkins/env/concordia.production.jenkins.env | 6 +++--- jenkins/env/concordia.staging.jenkins.env | 6 +++--- jenkins/env/contracts.production.jenkins.env | 2 +- jenkins/env/contracts.provider.production.env | 2 +- jenkins/env/contracts.provider.staging.env | 2 +- jenkins/env/contracts.staging.jenkins.env | 2 +- jenkins/env/pinner.production.jenkins.env | 8 ++++---- jenkins/env/pinner.staging.jenkins.env | 8 ++++---- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/jenkins/env/concordia.production.jenkins.env b/jenkins/env/concordia.production.jenkins.env index e41a5c5..8a8c71a 100755 --- a/jenkins/env/concordia.production.jenkins.env +++ b/jenkins/env/concordia.production.jenkins.env @@ -5,12 +5,12 @@ LETSENCRYPT_EMAIL=ecentricsgr@gmail.com # Variables needed in runtime (in browser) REACT_APP_CONCORDIA_HOST=https://concordia.ecentrics.net -REACT_APP_CONCORDIA_PORT=7777 +REACT_APP_CONCORDIA_PORT=443 REACT_APP_RENDEZVOUS_HOST=/dns4/rendezvous.ecentrics.net -REACT_APP_RENDEZVOUS_PORT=9090 +REACT_APP_RENDEZVOUS_PORT=80 REACT_APP_USE_EXTERNAL_CONTRACTS_PROVIDER=true REACT_APP_CONTRACTS_PROVIDER_HOST=https://contracts.concordia.ecentrics.net -REACT_APP_CONTRACTS_PROVIDER_PORT=8400 +REACT_APP_CONTRACTS_PROVIDER_PORT=443 REACT_APP_CONTRACTS_VERSION_HASH=stable diff --git a/jenkins/env/concordia.staging.jenkins.env b/jenkins/env/concordia.staging.jenkins.env index 9a6c237..4f2d11a 100755 --- a/jenkins/env/concordia.staging.jenkins.env +++ b/jenkins/env/concordia.staging.jenkins.env @@ -5,12 +5,12 @@ LETSENCRYPT_EMAIL=ecentricsgr@gmail.com # Variables needed in runtime (in browser) REACT_APP_CONCORDIA_HOST=https://staging.concordia.ecentrics.net -REACT_APP_CONCORDIA_PORT=7000 +REACT_APP_CONCORDIA_PORT=443 REACT_APP_RENDEZVOUS_HOST=/dns4/rendezvous.ecentrics.net -REACT_APP_RENDEZVOUS_PORT=9090 +REACT_APP_RENDEZVOUS_PORT=80 REACT_APP_USE_EXTERNAL_CONTRACTS_PROVIDER=true REACT_APP_CONTRACTS_PROVIDER_HOST=https://staging.contracts.concordia.ecentrics.net -REACT_APP_CONTRACTS_PROVIDER_PORT=8450 +REACT_APP_CONTRACTS_PROVIDER_PORT=443 REACT_APP_CONTRACTS_VERSION_HASH=latest diff --git a/jenkins/env/contracts.production.jenkins.env b/jenkins/env/contracts.production.jenkins.env index 1cef914..fe22205 100755 --- a/jenkins/env/contracts.production.jenkins.env +++ b/jenkins/env/contracts.production.jenkins.env @@ -4,5 +4,5 @@ WEB3_HOST=concordia-ganache-production WEB3_PORT=8545 CONTRACTS_PROVIDER_HOST=https://contracts.concordia.ecentrics.net -CONTRACTS_PROVIDER_PORT=8400 +CONTRACTS_PROVIDER_PORT=443 CONTRACTS_VERSION_TAG=stable diff --git a/jenkins/env/contracts.provider.production.env b/jenkins/env/contracts.provider.production.env index 8916775..d3bfc12 100755 --- a/jenkins/env/contracts.provider.production.env +++ b/jenkins/env/contracts.provider.production.env @@ -6,4 +6,4 @@ LETSENCRYPT_EMAIL=ecentricsgr@gmail.com CONTRACTS_PROVIDER_PORT=8400 UPLOAD_CONTRACTS_DIRECTORY=/mnt/concordia/contracts/ LOGS_PATH=/mnt/concordia/logs/ -CORS_ALLOWED_ORIGINS="https://concordia.ecentrics.net;http://127.0.0.1:4444;127.0.0.1:4444" +CORS_ALLOWED_ORIGINS="https://concordia.ecentrics.net:443;https://contracts.concordia.ecentrics.net:443;http://127.0.0.1:4444;127.0.0.1:4444" diff --git a/jenkins/env/contracts.provider.staging.env b/jenkins/env/contracts.provider.staging.env index cc49be6..0891d8b 100755 --- a/jenkins/env/contracts.provider.staging.env +++ b/jenkins/env/contracts.provider.staging.env @@ -6,4 +6,4 @@ LETSENCRYPT_EMAIL=ecentricsgr@gmail.com CONTRACTS_PROVIDER_PORT=8450 UPLOAD_CONTRACTS_DIRECTORY=/mnt/concordia/contracts/ LOGS_PATH=/mnt/concordia/logs/ -CORS_ALLOWED_ORIGINS="https://staging.concordia.ecentrics.net;http://127.0.0.1:5555;127.0.0.1:5555" +CORS_ALLOWED_ORIGINS="https://staging.concordia.ecentrics.net:443;https://staging.contracts.concordia.ecentrics.net:443;http://127.0.0.1:5555;127.0.0.1:5555" diff --git a/jenkins/env/contracts.staging.jenkins.env b/jenkins/env/contracts.staging.jenkins.env index 106a637..bffdfdd 100755 --- a/jenkins/env/contracts.staging.jenkins.env +++ b/jenkins/env/contracts.staging.jenkins.env @@ -4,5 +4,5 @@ WEB3_HOST=concordia-ganache-staging WEB3_PORT=8555 CONTRACTS_PROVIDER_HOST=https://staging.contracts.concordia.ecentrics.net -CONTRACTS_PROVIDER_PORT=8450 +CONTRACTS_PROVIDER_PORT=443 CONTRACTS_VERSION_TAG=latest diff --git a/jenkins/env/pinner.production.jenkins.env b/jenkins/env/pinner.production.jenkins.env index 87052f7..025a835 100755 --- a/jenkins/env/pinner.production.jenkins.env +++ b/jenkins/env/pinner.production.jenkins.env @@ -9,14 +9,14 @@ IPFS_DIRECTORY=/mnt/concordia/ipfs LOGS_PATH=/mnt/concordia/logs/ CONTRACTS_PROVIDER_HOST=https://contracts.concordia.ecentrics.net -CONTRACTS_PROVIDER_PORT=8400 +CONTRACTS_PROVIDER_PORT=443 CONTRACTS_VERSION_HASH=stable -PINNER_API_HOST=https://127.0.0.1 -PINNER_API_PORT=4444 +PINNER_API_HOST=https://pinner.concordia.ecentrics.net +PINNER_API_PORT=443 RENDEZVOUS_HOST=/dns4/rendezvous.ecentrics.net -RENDEZVOUS_PORT=9090 +RENDEZVOUS_PORT=80 WEB3_HOST=ganache.ecentrics.net WEB3_PORT=8545 diff --git a/jenkins/env/pinner.staging.jenkins.env b/jenkins/env/pinner.staging.jenkins.env index 1410813..7f6097f 100755 --- a/jenkins/env/pinner.staging.jenkins.env +++ b/jenkins/env/pinner.staging.jenkins.env @@ -9,14 +9,14 @@ IPFS_DIRECTORY=/mnt/concordia/ipfs LOGS_PATH=/mnt/concordia/logs/ CONTRACTS_PROVIDER_HOST=https://staging.contracts.concordia.ecentrics.net -CONTRACTS_PROVIDER_PORT=8450 +CONTRACTS_PROVIDER_PORT=443 CONTRACTS_VERSION_HASH=latest -PINNER_API_HOST=https://127.0.0.1 -PINNER_API_PORT=5555 +PINNER_API_HOST=https://staging.pinner.concordia.ecentrics.net +PINNER_API_PORT=443 RENDEZVOUS_HOST=/dns4/rendezvous.ecentrics.net -RENDEZVOUS_PORT=9090 +RENDEZVOUS_PORT=80 WEB3_HOST=staging.ganache.ecentrics.net WEB3_PORT=8555