DirectAdmin blocks port 80 from an unused IP

remics

Verified User
Joined
Aug 6, 2019
Messages
60
I would like to use port 80 and 443 of an IP that is not in use by any website, however when I open the IP I receive the following message:
OpenLiteSpeed is functioning normally

That's because litespeed is blocking the port.

I want to use this IP with a Docker application but due to the fact that this port is blocked I get the following error:


Bash:
[root@acesso ~]# docker container run -d -p 177.53.142.183:80:80 --name wordpress wordpress
ca14e7338342557ad505518400a191509198a431322babbc5e68cef4d3053368
docker: Error response from daemon: driver failed programming external connectivity on endpoint wordpress (22821d52e89dfc649c419a36dacdad46e6c0e8e1645608b3708d3992ab3f40fb):  (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 177.53.142.183 --dport 80 -j DNAT --to-destination 172.17.0.2:80 ! -i docker0: iptables: No chain/target/match by that name.
 (exit status 1)).

Attention: The WordPress application was used here only to serve as an example.
 
Back
Top