-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f878873
commit 0d336f5
Showing
6 changed files
with
46 additions
and
28 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Config | ||
|
||
The package's settings will be available under this tab in both a simple and advanced mode. The advanced mode can be accessed by clicking the lower-right corner of the screen when available. | ||
The Config section provides access to the package's settings, available in both simple and advanced modes. You can switch to the advanced mode by clicking the option in the lower-right corner of the screen when it is available. This flexibility allows users to customize package parameters according to their needs, from basic adjustments to more detailed configurations. | ||
|
||
![dappnode_packages2](/img/dappnode_packages2.png) |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Info | ||
|
||
- **Version**: You'll find both the package's version and its upstream version here. | ||
- **Getting Started**: Some of the basic information needed to run the package. | ||
- **URLs**: These will offer a number of different options, starting with bundled package UI/Dashboards and related tools such as Launchpads or external documentation. | ||
- **Package Status**: Will provide information about the package's status, for example if it's running fine or if it has crashed or in the process of restarting. | ||
- **Pause/Restart Package**: Useful for troubleshooting or restarting a stopped package. | ||
- **Remove Volumes**: Also known as the "gray trash bin", this option will wipe all of the package's data and start syncing from scratch in the case of clients. | ||
- **Remove Package**: This would be the "red trash bin", and clicking it will give you the option to preserve or delete the associated database. | ||
The Info section provides a comprehensive overview of the package's status and essential details. This section is crucial for understanding the current state of the package and managing its basic operations. Below are the key features you'll find in the Info section: | ||
|
||
- **Version**: Displays both the package's version and its upstream version. | ||
- **Getting Started**: Provides essential information needed to run the package. You can remove this section if it's not needed anymore. | ||
- **Links**: Offers various options, including bundled package UI/Dashboards, related tools such as Launchpads, and external documentation. | ||
- **Package Status Indicator**: Indicates the current status of the package (e.g., running, crashed, restarting). | ||
- **Package Status Manager**: Allows you to play/pause or restart the package for management and troubleshooting purposes. | ||
- **Remove Volumes**: Wipes all package data. For blockchain nodes/clients, this will force the package to start syncing from scratch (or from a checkpoint if a proper URL has been set). This option is represented by a gray trash bin icon. | ||
- **Remove Package**: Completely removes the package from your Dappnode. You can choose to either keep or delete any data associated with it. This option is represented by a red trash bin icon. | ||
|
||
![dappnode_packages1](/img/dappnode_packages1.png) |
28 changes: 16 additions & 12 deletions
28
docs/user/packages/understanding-dappnode-packages/network.md
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 |
---|---|---|
@@ -1,22 +1,26 @@ | ||
# Network | ||
|
||
The Network section allows you to manage and configure the network settings for your packages. This includes adjusting network settings for individual services, changing port mappings, and setting up domain mappings to expose your package to the internet. | ||
|
||
![dappnode_packages3](/img/dappnode_packages3.png) | ||
|
||
- **Service**: Some packages may have multiple services running as part of the same container. This option will allow you to adjust each of their network settings separately. | ||
- **Public port mapping**: Need to change your package's port mapping? You can change this setting in this field as well as its protocol between TCP and UDP. | ||
|
||
- **Public port mapping**: Need to change your package's port mapping? You can change this setting in this field as well as its protocol between TCP and UDP. Remember that Dappnode features UPnP technology, so if this protocol is enabled in your router, the port opened here will be forwarded in the router, too. | ||
|
||
- **HTTPs domain mapping**: Do you want to expose your package to the internet? You'll be able to add multiple public domains to your package here. This is a great way to share your node's RPC with friends and family! | ||
- From subdomain: the domain name you want to set for the mapping. It will be appended to your dappnode dynDNS domain. | ||
- To port: The container port you want to map to the domain. Double check you have chosen correctly the port you want to map. Common ports are: | ||
- 80: Commonly used for exposing UIs | ||
- 8545: Commonly used for Ethereum RPCs | ||
- 8551: Commonly used for Ethereum Engine endpoints | ||
- 3500: Commonly used for the beacon chain API in dappnode. | ||
- 4500: Commonly used for the validator API in dappnode. | ||
- Basic auth: This parameter is optional and allows you to set a basic authentication for the domain. It will be required to access the domain, learn more about basic authentication [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication). The basic auth is composed of two fields: | ||
- User: The username you want to set for the basic authentication. | ||
- Password: The password you want to set for the basic authentication. | ||
- <u>From subdomain</u>: the domain name you want to set for the mapping. It will be appended to your dappnode dynDNS domain. | ||
|
||
- <u>To port</u>: The container port you want to map to the domain. Double check you have chosen correctly the port you want to map. These ports are commonly used: | ||
- 80: Exposing UIs | ||
- 8545: Ethereum RPC APIs | ||
- 8551: Ethereum Engine endpoints | ||
- 3500: Beacon chain or validator API in Dappnode. | ||
|
||
- <u>Basic auth</u>: This parameter is optional and allows you to set a basic authentication for the domain. It will be required to access the domain, learn more about basic authentication [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication). The basic auth is composed of fields **User** and **Password** | ||
|
||
:::warning | ||
For security reasons the password is stored hashed in the HTTPS package database. If you lose it, you will have to reset the password. | ||
For security reasons, the password is not stored in plain text. This means it cannot be recovered if lost. In such case, you will have to re-create the port mapping with a new password. | ||
::: | ||
|
||
![dappnode_packages3](/img/dappnode_package_network.png) |
20 changes: 16 additions & 4 deletions
20
docs/user/packages/understanding-dappnode-packages/overview.md
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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
# What are Dappnode packages and what features do they offer? | ||
# Dappnode Packages | ||
|
||
--- | ||
### What are Dappnode packages? What features do they offer? How are they managed? | ||
|
||
## **Introduction** | ||
One of Dappnode's top features is its user-friendly interface, which allows users to interact with various packages containing clients and other applications. This section will go over the basic features you'll find in any Dappnode package. | ||
|
||
One of Dappnode's top features is to offer a user-friendly interface to interact with different packages that contain clients and other applications. This section will go over the basic features you'll find in any Dappnode package. | ||
There are 6 sections in the package view: | ||
|
||
[**π Info**](/docs/user/packages/understanding-dappnode-packages/info): Provides basic information about the package, including its running status and volume management. | ||
|
||
[**π§ Config**](/docs/user/packages/understanding-dappnode-packages/config): Contains configuration settings for the package, allowing users to adjust parameters and customize its behavior according to their needs. | ||
|
||
[**π‘ Network**](/docs/user/packages/understanding-dappnode-packages/network): Details the network configuration, including port settings and forwarding options. | ||
|
||
[**π Logs**](/docs/user/packages/understanding-dappnode-packages/logs): Provides access to various logs generated by each of the package's services, useful for troubleshooting and monitoring package performance. | ||
|
||
[**π File Manager**](/docs/user/packages/understanding-dappnode-packages/file-manager): Offers a file management interface that allows users to upload and download files within any of the services that make up the package. | ||
|
||
[**πΎ Backup**](/docs/user/packages/understanding-dappnode-packages/backup): Includes backup options to safeguard package data, providing the ability to download and restore backups in a compressed file format. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.