Disable 8081

Max

Administrator
Staff member
Good day.
If you want to disable HTTP port but use only HTTPS 8444, you can set up firewall (iptables, fwd etc) or NAT router to block requests to port 8081 from outside, for example
Code:
iptables -A INPUT -p tcp --dport 8081 -j DROP
If you want to disable some actions on HTTP interface, please refer to this doc: HTTP interfaces access restriction
 
Top