I'm trying to set custom domain on my Django project, but still I'm receiving message err_CONNECTION_TIMED_OUT. Ip works just fine.
Apache2/project.conf
<VirtualHost *:80>
ServerName www.uczsieit.pl
ServerAlias uczsieit.pl
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /static /home/adam/personal_blog_project/personal_blog/conf/static
<Directory /home/adam/personal_blog_project/personal_blog/conf/static>
Require all granted
</Directory>
Alias /media /home/adam/personal_blog_project/personal_blog/conf/media
<Directory /home/adam/personal_blog_project/personal_blog/conf/media>
Require all granted
</Directory>
<Directory /home/adam/personal_blog_project/personal_blog/conf>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
WSGIScriptAlias / /home/adam/personal_blog_project/personal_blog/conf/wsgi.py
WSGIDaemonProcess django_app python-path=/home/adam/personal_blog_project/personal_blog python-home=/home/adam/$ WSGIProcessGroup django_app
</VirtualHost>
I added domain to Django Allowed hosts and set Reverse DNS and A/AAAA Records as well.
In error.log of apache lack of info about errors.