Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Apache timeout

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
kronos13
Posts: 1
Joined: 2019-12-30 22:48

Apache timeout

#1 Post by kronos13 »

Hello, i have installed debian 10 on my pc, i installed apache2 and i'm trying to bind a domain to my pc
I've added in my router's forwarding the port 80.

When i enter to the domain from my browser i can access to my apache published site, if i access from another device in my lan, it works well.
Now, the problem is: when i attempt to access from an external device i just get a Timeout error

I have searched over the internet and still can't solve the problem

I tried using an additional port, so added "Listen 8000" to my apache configuration

Now i can access using mydomain:8000 from any device (On my lan or external) without problem, but still have the same problem when accessing from an external device with the port 80

What can it be? How may i solve this?
Thanks to all who can help me.

DebbyIan
Posts: 158
Joined: 2013-05-09 12:12

Re: Apache timeout

#2 Post by DebbyIan »

The connection is timing out because your LAN's firewall is blocking incoming connections from the world on port 80.

On the gateway please do:

Code: Select all

sudo ufw status
If TCP/80 isn't allowed then you can do:

Code: Select all

sudo ufw allow 80/tcp && sudo ufw reload

Post Reply