Skip to main content

Custom port and IP domain

1. Custom Development Platform Port and Protocol

# Download the latest installation package and extract it
cd /data/tencent/weda

# Configure the LICENSE.txt file

# Configure custom access port
vim config.yaml

# Provide the real access address (IP or domain name)
domian:"<Fill in the real access IP>"

# Access protocol for the real access address: https or http
domainProtocol:"http"

# Public Port
domainPort:8080

tip

After modifying the current configuration file ./upgrade.sh, you need to restart the platform service for the changes to take effect

2. Custom Installer Port and Allowlist IP Access

2.1. The default port is: 38080. If occupied, it will report an error and fail to start. You need to change the port number, for example: 38081.

./install.sh --port=38081

2.2. Specify client access. Considering security, you can restrict access to specific computers only. You can execute:

`./install.sh --port=38081 --cips="129.23.22.11,123.34.44.22"`
Note: The 129.23.22.11,123.34.44.22 are the IP addresses of your client computers. Use commas to separate multiple IP addresses.