Very short problem, with
[vagrant@localhost ~]$ curl http://0.0.0.0
I can see the entire HTML page of NGINX & Redhat, but I cannot connect to this hosts server with the public IP nor the bridge IP (10.XX.XX….) of VirtualBox’s host&guest network. They hung up indefinitely (yes, no connection error, just infinite loading)
[vagrant@localhost ~]$ sudo firewall-cmd --list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: enp0s3
sources:
services: cockpit dhcpv6-client http ssh
ports: 80/tcp 443/tcp
protocols:
forward: yes
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
from nginx.conf:
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
error_page 404 /404.html;
location = /404.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
All help is appreciated. System itself is CentOS Stream 9:
1