use the correct port for starter pack proxy

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-04-02 19:50:53 +02:00
parent 6eda051b8a
commit 505c67d654
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ starterpack_eth_contract_name: '{{lookup("passwordstore", "service/starterpack/t
starterpack_eth_private_key: '{{lookup("passwordstore", "service/starterpack/test/eth/priv-key")}}' starterpack_eth_private_key: '{{lookup("passwordstore", "service/starterpack/test/eth/priv-key")}}'
starterpack_secret_key_base: '{{lookup("passwordstore", "service/starterpack/test/secret-key-base")}}' starterpack_secret_key_base: '{{lookup("passwordstore", "service/starterpack/test/secret-key-base")}}'
# Starter Pack API port
starterpack_app_port: 3000
# add a swap file to avoid memory issues when syncing # add a swap file to avoid memory issues when syncing
swap_file_size_mb: 2048 swap_file_size_mb: 2048
@ -22,5 +25,5 @@ nginx_sites:
- ssl_certificate_key /certs/status.im/origin.key - ssl_certificate_key /certs/status.im/origin.key
- location / { - location / {
proxy_pass http://localhost:8080/; proxy_pass http://localhost:{{ starterpack_app_port }}/;
} }