Skip to content
下载《AI 应用 & AI Agent 开发新范式》电子书 了解构建 AI Agent 和 MCP Server 的一线实践Know more

Modify Gateway Listening Ports

To make Gateway listen to ports other than 80 and 443, you need to specify the non-standard ports during installation or upgrade. For example, adjusting port 80 to 8080 and port 443 to 8443.

Kubernetes Installation

Adjust the helm parameter values.yaml configuration as follows:

higress-core:
# Gateway settings
gateway:
httpPort: 8080
httpsPort: 8443
service:
ports:
- name: http2
port: 80
protocol: TCP
targetPort: 8080
- name: https
port: 443
protocol: TCP
targetPort: 8443

You can quickly install Higress with modified listening ports using the following commands:

Terminal window
# Install Higress in a Kubernetes cluster using Helm
helm install higress higress.io/higress -n higress-system -f ./values.yaml --create-namespace
# Install Higress in a Kubernetes cluster using hgctl
hgctl install --set profile=k8s -f ./values.yaml

Docker Environment Installation

You can quickly install Higress with modified listening ports using the following commands:

Terminal window
# Install Higress in a Docker environment using get-higress.sh
curl -fsSL https://higress.io/standalone/get-higress.sh | bash -s -- ./higress --gateway-http-port=8080 --gateway-https-port=8443
# Install Higress in a Docker environment using hgctl
hgctl install --set profile=local-docker --set gateway.httpPort=8080 --set gateway.httpsPort=8443