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
iptables -A INPUT -p tcp --dport 8081 -j DROP
If you want to disable some actions on HTTP interface, please refer...