Skip to content

Commit 8452da8

Browse files
Update README.md
1 parent 9073aa9 commit 8452da8

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To run `Blockchain-based-IoT-Server` effectively, the following system specifica
2222
- **Storage:** 30 GB SSD minimum
2323
- **CPU:** Dual-core processor (x86_64 or ARM64)
2424

25-
- Consider a URL for your IoT Server. All your users will access the IoT server web dashboard using this URL. We call it NODE_URL in this ReadMe.
25+
- Consider a URL for your IoT Server. All your users will access the IoT server web dashboard using this URL. We call it PANEL_URL in this ReadMe.
2626
- Consider a URL for your IoT Server's administrators. All your administrators will access the IoT server admin dashboard using this URL. We call it ADMIN_URL in the ReadMe.
2727

2828
_These requirements are suitable for typical IoT workloads. Actual needs may vary based on deployment scale and data volume._
@@ -133,7 +133,7 @@ sudo certbot certonly --standalone --preferred-challenges http
133133
- Make sure to create the certificate for domain and all subdomains
134134
After running the command, enter your web app and admin web app domains separated by a space, like this:
135135
```
136-
NODE_URL ADMIN_URL
136+
PANEL_URL ADMIN_URL
137137
```
138138
- The 'certbot' command generates `fullchain.pem` and `privkey.pem` in either `/etc/letsencrypt/admin.YOURDOMAIN.COM` or `/etc/letsencrypt/panel.YOURDOMAIN.COM`.
139139
- Create the `ssl` folder inside `/etc/nginx`
@@ -142,8 +142,8 @@ sudo mkdir /etc/nginx/ssl
142142
```
143143
- Copy both `fullchain.pem` and `privkey.pem` into `/etc/nginx/ssl`.
144144
```
145-
sudo cp /etc/letsencrypt/live/NODE_URL/fullchain.pem /etc/nginx/ssl/
146-
sudo cp /etc/letsencrypt/live/NODE_URL/privkey.pem /etc/nginx/ssl/
145+
sudo cp /etc/letsencrypt/live/PANEL_URL/fullchain.pem /etc/nginx/ssl/
146+
sudo cp /etc/letsencrypt/live/PANEL_URL/privkey.pem /etc/nginx/ssl/
147147
```
148148
or
149149
```
@@ -219,7 +219,7 @@ http {
219219
listen [::]:443 ssl;
220220
221221
index index.html index.htm;
222-
server_name NODE_URL;
222+
server_name PANEL_URL;
223223
224224
root /var/www/html/wikifidesdoc/site;
225225
@@ -325,7 +325,7 @@ cd /home/Blockchain-based-IoT-Server/backend
325325
sudo nano .env
326326
```
327327

328-
- Inside the `.env` file, paste the following parameters. Note that your user web app URL is "NODE_URL" (e.g., "panel.zksensor.com").
328+
- Inside the `.env` file, paste the following parameters. Note that your user web app URL is "PANEL_URL" (e.g., "panel.zksensor.com").
329329

330330
```
331331
# Set this with your node URL (e.g., 'zksensor.com')
@@ -347,7 +347,7 @@ ADMIN_WALLET_PRIVATE_KEY='YOUR_ADMIN_WALLET_PRIVATE_KEY'
347347
348348
# Server Configuration
349349
HOST_PROTOCOL='https://'
350-
HOST_NAME_OR_IP=NODE_URL
350+
HOST_NAME_OR_IP=PANEL_URL
351351
HOST_PORT='6000'
352352
HOST_SUB_DIRECTORY='app'
353353
@@ -388,7 +388,7 @@ THEME_BOX='1D293D'
388388
THEME_BUTTON='33658A'
389389
390390
# IoT Server logo path
391-
THEME_LOGO='https://NODE_URL/app/uploads/logo.png'
391+
THEME_LOGO='https://PANEL_URL/app/uploads/logo.png'
392392
393393
ACCESS_TOKEN_ISSUER='https://fidesinnova.io'
394394
ACCESS_TOKEN_EXPIRATION_TIME=1200000000
@@ -598,7 +598,7 @@ sudo nano .env
598598
```
599599
Enter the following lines in the .env file and replace `YOUR_NODE_NAME` with your actual node name.
600600
```
601-
VITE_URL='https://NODE_URL/app/'
601+
VITE_URL='https://PANEL_URL/app/'
602602
VITE_NODE_NAME='YOUR_NODE_NAME'
603603
VITE_RPC_URL='https://rpc1.fidesinnova.io'
604604
```
@@ -611,7 +611,7 @@ sudo nano .env
611611
```
612612
Enter the following lines in the .env file and replace `YOUR_NODE_NAME` with your actual node name.
613613
```
614-
VITE_URL='https://NODE_URL/app/'
614+
VITE_URL='https://PANEL_URL/app/'
615615
VITE_NODE_NAME='YOUR_NODE_NAME'
616616
VITE_RPC_URL='https://rpc1.fidesinnova.io'
617617
```
@@ -639,11 +639,11 @@ To automate the setup and build processes for both the backend and frontend appl
639639
sudo ./initial_setup.sh
640640
```
641641
## D.2. Account Setup
642-
- Goto `https://NODE_URL` and go to the 'Sign up' section and create a password for your `super admin email address`.
642+
- Goto `https://PANEL_URL` and go to the 'Sign up' section and create a password for your `super admin email address`.
643643
- Goto `https://ADMIN_URL` and login with your `super admin email address` and its password.
644644

645645
## D.3. Congratulations
646-
- Panel Web App, `https://NODE_URL` is for your regular users.
646+
- Panel Web App, `https://PANEL_URL` is for your regular users.
647647
- Admin Web App, `https://ADMIN_URL` is for your super admin users.
648648
- Contact FidesInnova at info@fidesinnova.io to add your Web App URLs to the FidesInnova website. These are already registered IoT Servers:
649649
- [https://panel.motioncertified.online](https://panel.motioncertified.online/)

0 commit comments

Comments
 (0)