-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Serverside verification + docs revised - Release 1.5 (#426)
Server-side Verification of documents #412 fix invalid character, updates in BN lib #413 Installation guide #396 Order of chapters in Handbook #387 Go library updates #427
- Loading branch information
Showing
23 changed files
with
949 additions
and
1,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
PROXEUS_EMAIL_FROM=<Your valid Sender Email Address> | ||
|
||
PROXEUS_INFURA_API_KEY=<Your Infura project ID> | ||
|
||
PROXEUS_SPARKPOST_API_KEY=<Your SparkPost API Key> | ||
|
||
PROXEUS_ENCRYPTION_SECRET_KEY=<A 32-character random string> | ||
|
||
# Sepolia test-net | ||
PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS=0x9bc518Fd070BE3DBB07399261688015744a7FB02 | ||
|
||
# For a local development environment without SSL | ||
PROXEUS_ALLOW_HTTP=true | ||
|
||
# To see additional debugging information | ||
PROXEUS_TEST_MODE=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please use our public [Issue Tracker](https://github.com/ProxeusApp/proxeus-core/issues) to open improvement and bug tickets. | ||
|
||
If you find a **Security Issue** - a vulnerability that may affect live or testnet deployments please send your report privately to [email protected] - Please DO NOT file a public issue in this case. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
# This file is an override and needs to be used like this: | ||
# | ||
# docker-compose -f docker-compose.yml -f docker-compose-example.override.yml up | ||
|
||
version: '3.7' | ||
|
||
services: | ||
node-crypto-forex-rates: | ||
networks: | ||
- reverse-proxy | ||
labels: | ||
com.centurylinklabs.watchtower.enable: "true" | ||
environment: | ||
# Replace values for reverse-proxy | ||
VIRTUAL_HOST: ${NODE_CRYPTO_FOREX_RATES_VIRTUAL_HOST:-proxeus.example.com} | ||
VIRTUAL_PORT: 8011 | ||
# Replace values for letsencrypt | ||
LETSENCRYPT_HOST: ${NODE_CRYPTO_FOREX_RATES_VIRTUAL_HOST:-proxeus.example.com} | ||
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:[email protected]} | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,17 @@ When starting the server for the first time, you will need to configure it. | |
Open http://localhost:1323/init to configure your server. Use the | ||
configuration below as an example. | ||
|
||
## Document Service URL | ||
``` | ||
https://dev-ds.proxeus.com/ | ||
``` | ||
**Note:** that your system configuration at this point will be reflected in the local configuration database under `data/proxeus-platform/settings/main.json`. Any future changes to the configuration must be made here - the environment variables will not be propagated, unless you delete this file to reset the deployment. | ||
|
||
## Infura API Key | ||
Generate a [infura API Key](https://infura.io) | ||
|
||
Generate an [Infura API Key](https://infura.io) | ||
|
||
## Blockchain File Storage contract address | ||
|
||
You can switch between the networks using the environment configuration `PROXEUS_BLOCKCHAIN_NET`. | ||
For your convenience, a smart contract is deployed on several networks at the following addresses: | ||
|
||
### Sepolia | ||
``` | ||
0x9bc518Fd070BE3DBB07399261688015744a7FB02 | ||
|
@@ -46,15 +48,15 @@ Generate a [infura API Key](https://infura.io) | |
``` | ||
[Verify on Etherscan](https://polygonscan.com/address/0x60970BeFda93464A105DD21Dc6a30B69C5B5c6e4) | ||
|
||
|
||
|
||
Alternatively: deploy your own smart contract from [ProxeusFS.sol](https://github.com/ProxeusApp/storage-app/blob/master/spp/eth/solidity/ProxeusFS.sol) | ||
|
||
|
||
## Email from | ||
|
||
``` | ||
[email protected] | ||
``` | ||
|
||
## Sparkpost API Key | ||
|
||
Set up a free account on [SparkPost](https://www.sparkpost.com) | ||
|
@@ -70,6 +72,12 @@ [email protected] | |
|
||
This is a salt to hash your user's passwords in the database. You can use any value, with preference to hard generated strings. Make sure that it is exactly 32 characters long. Do not change the key on a running instance. This can only be set using an environment variable. | ||
|
||
## Document Service URL | ||
|
||
This only needs to be changed if you are running the service on a separate machine. See the documentation at https://github.com/ProxeusApp/document-service | ||
|
||
--- | ||
|
||
# Full Configuration | ||
|
||
You can get the full list of configuration parameters using the `-h` parameter: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.