if you check following domain:
top-produkttest.de
You will see, that nothing is loading. The Domain is pointed to the servers' IP Adress and I configured the domain in the vhosts file. The server is running on CentOS 7 and bitnami was preinstalled. Apache2 is running. I also can't access it via the Servers' IP Adress. I have another ubuntu server and I am positive, that the vhosts is configured correctly. Apache2 is not giving back any error messages at all.
Instead of trying to start wordpress, I just put an "index.html" into the directory, so I think somehow it doesn't resolve all of my settings, but I don't know where to look. All bitnami modules are running (through the /opt/bitnami/... start command)
I really don't know how to debug that problem. When I ping the website, it says "x packages send, but 0 received. 100% data loss".
Does anyone know, what could be the problem here and where I can start? I searched through the whole bitnami config, but the only thing it tells, is how to setup the vhosts(which I did).
Edit after comment:
I checked that answer and both are not correct for me.
When I check Port 80 it says:
sudo netstat -tnlp | grep :80
tcp6 0 0 :::80 :::* LISTEN 31320/httpd.bin
And for the firewall part I checked with: nmap -sT -O localhost
And got back:
PORT STATE SERVICE
21/tcp open ftp
22/tcp open ssh
25/tcp open smtp
80/tcp open http
443/tcp open https
3306/tcp open mysql
Edit2:
My iptables config:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination