curl -v http://av.gds.vn/
* Trying 113.52.35.27...
* TCP_NODELAY set
* connect to 113.52.35.27 port 80 failed: Connection refused
* Failed to connect to av.gds.vn port 80: Connection refused
* Closing connection 0
curl: (7) Failed to connect to av.gds.vn port 80: Connection refused
Is there another firewall in front of your server?
[root@av ~]# vi /etc/httpd/conf.modules.d/00-mpm.conf
# Select the MPM module which should be used by uncommenting exactly
# one of the following LoadModule lines:
# prefork MPM: Implements a non-threaded, pre-forking web server
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
# worker MPM: Multi-Processing Module implementing a hybrid
# multi-threaded multi-process web server
# See: http://httpd.apache.org/docs/2.4/mod/worker.html
#
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
# event MPM: A variant of the worker MPM with the goal of consuming
# threads only for connections with active processing
# See: http://httpd.apache.org/docs/2.4/mod/event.html
#
#LoadModule mpm_event_module modules/mod_mpm_event.so
The MPM message is not the problem that is breaking your renewal.
Apache was running on port 443 only.
[now both 80 and 443 are not responding]
curl -v http://av.gds.vn/
* Trying 113.52.35.27...
* TCP_NODELAY set
* connect to 113.52.35.27 port 80 failed: Connection refused
* Failed to connect to av.gds.vn port 80: Connection refused
* Closing connection 0
curl: (7) Failed to connect to av.gds.vn port 80: Connection refused
curl -v https://av.gds.vn/
* Trying 113.52.35.27...
* TCP_NODELAY set
* connect to 113.52.35.27 port 443 failed: Connection refused
* Failed to connect to av.gds.vn port 443: Connection refused
* Closing connection 0
curl: (7) Failed to connect to av.gds.vn port 443: Connection refused
The problem is with your new configuration.
Which you haven't been able to show (yet).
Despite that iptables output, it can't be reached "CONNECTIONS REFUSED":
curl -v http://av.gds.vn/
* Trying 113.52.35.27...
* TCP_NODELAY set
* connect to 113.52.35.27 port 80 failed: Connection refused
* Failed to connect to av.gds.vn port 80: Connection refused
* Closing connection 0
curl: (7) Failed to connect to av.gds.vn port 80: Connection refused
curl -v https://av.gds.vn/
* Trying 113.52.35.27...
* TCP_NODELAY set
* connect to 113.52.35.27 port 443 failed: Connection refused
* Failed to connect to av.gds.vn port 443: Connection refused
* Closing connection 0
curl: (7) Failed to connect to av.gds.vn port 443: Connection refused