diff --git a/conf/nginx.conf b/conf/nginx.conf index a7ca8c253..ac2457ca9 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -83,8 +83,8 @@ server { rewrite ^/lightning-network/dcrlncli/args-and-commands/?$ $scheme://$http_host/lightning-network/dcrlncli/options-and-commands permanent; rewrite ^/advanced/address-details/?$ https://devdocs.decred.org/developer-guides/addresses permanent; rewrite ^/advanced/blockchain-parameters/?$ https://devdocs.decred.org/developer-guides/blockchain-parameters permanent; - rewrite ^/advanced/using-testnet/?$ https://devdocs.decred.org/environments/testnet permanent; - rewrite ^/advanced/transaction-details/?$ https://devdocs.decred.org/developer-guides/transactions/transactions permanent; + rewrite ^/advanced/using-testnet/?$ https://devdocs.decred.org/environments/testnet permanent; + rewrite ^/advanced/transaction-details/?$ https://devdocs.decred.org/developer-guides/transactions/transactions permanent; rewrite ^/advanced/simnet/?$ https://devdocs.decred.org/environments/simnet permanent; rewrite ^/advanced/block-header-specifications/?$ https://devdocs.decred.org/developer-guides/block-header-specifications permanent; rewrite ^/research/ticket-selection-algorithm/?$ https://devdocs.decred.org/developer-guides/ticket-selection permanent; @@ -92,4 +92,5 @@ server { rewrite ^/research/script-extensions/?$ https://devdocs.decred.org/developer-guides/script-extensions permanent; rewrite ^/contributing/using-github/?$ https://devdocs.decred.org/contributing/contributor-guidelines permanent; rewrite ^/contributing/source-code-contributions/?$ https://devdocs.decred.org/contributing/contributor-guidelines permanent; + rewrite ^/advanced/operating-a-vsp/?$ https://github.com/decred/vspd/blob/master/docs/listing.md permanent; } diff --git a/docs/advanced/operating-a-vsp.md b/docs/advanced/operating-a-vsp.md deleted file mode 100644 index fab27a626..000000000 --- a/docs/advanced/operating-a-vsp.md +++ /dev/null @@ -1,44 +0,0 @@ -# Operating a Voting Service Provider (VSP) - ---- - -## Overview - -VSPs are a key part of the Decred infrastructure which make participating in proof-of-stake much more accessible for the average user. It is desirable to increase the number of operating VSPs in order to promote decentralization, improve the stability of the Decred network, and give stakeholders more choice. - -This is a high level guide of how to set up a VSP, and the steps required to list a VSP on [decred.org](https://decred.org/vsp) and in Decrediton wallet. The guide is deliberately written at a high level and with minimal details because a level of system admin experience is assumed for VSP operators. - ---- - -## Operator Requirements - -* Familiarity with system administration work on Linux, e.g. configuring and running nginx, ssh, IPSec, duplicity, monit -* Familiarity with compiling from source, setting up and maintaining `dcrd` and `dcrwallet` -* Ability to effectively communicate in English -* Willingness to stay in touch with the Decred community for important news and updates -* Availability to update VSP binaries when new releases are produced -* Operators should ideally be pairs of individuals or larger groups, e.g. corporate entities, so that the unavailability of a single person does not lead to extended outages in their absence - ---- - -## VSP Requirements - -There are several requirements for the VSP configuration: - -* At least one machine to host the web front end, handling web connections from VSP users. -* At least three machines to host voting wallets. Necessary because at least one voting wallet needs to be connected to the network and ready to vote at any time. -* Each voting wallet should be connected to a dedicated local instance of `dcrd`. -* The physical or virtual machines used to host the configuration must be spread across 3 or more physical locations. -* More specifically, voting wallets must be in 3+ physically separate locations. -* The web frontend must have an IP that is distinct from those of the voting wallets, and is ideally located in another physical location. -* Source code for the VSP is available [on GitHub](https://github.com/decred/vspd) and binaries must be compiled from source. -* The VSP must be run on testnet for 1 week to confirm it is working properly. Uptime and number of votes made versus missed will be checked. -* The VSP must be run on mainnet in test mode (no public access) until a VSP operator demonstrates they have successfully voted 1 ticket of their own using the VSP. -* The operator must have an adequate monitoring solution in place, ideally alerting on server downtime and application error logging. - ---- - -## Further Information - -More detailed instructions on how to setup a VSP can be found on GitHub in the [vspd repo](https://github.com/decred/vspd). -For further support you can contact the [Decred community](https://decred.org/community). diff --git a/mkdocs.yml b/mkdocs.yml index 1d2ed910b..6cfba5b30 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -255,7 +255,6 @@ nav: - 'Deleting Your Wallet': 'advanced/deleting-your-wallet.md' - 'Navigating Politeia Data': 'advanced/navigating-politeia-data.md' - 'Solo Proof-of-Stake (PoS) Voting': 'advanced/solo-proof-of-stake-voting.md' - - 'Operating a VSP': 'advanced/operating-a-vsp.md' - 'Running a Full Node': 'advanced/full-node.md' - 'Security': 'advanced/general-security.md' - 'Atomic Swaps': 'advanced/atomic-swap.md'