brentmjohnson commented on issue #4942:
URL: https://github.com/apache/apisix/issues/4942#issuecomment-1379650596
Another alternative is to modify the listen ports for apisix to the
following:
```
apisix: # universal configurations
node_listen: 80 # APISIX listening port
ssl:
enable: true
listen:
- port: 443
```
Since these are privileged ports, in kubernetes if you don't want to run as
root, this will require you to use the following securityContext on the pod
(not container):
```
securityContext:
sysctls:
- name: net.ipv4.ip_unprivileged_port_start
value: "1"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]