I created a new VirtualHost file with the folllowing parameters:
<VirtualHost *:6060>
ServerAdmin xxx@xxx.systems
DocumentRoot /var/www/xxx/httpdocs
<Directory /var/www/xxx/httpdocs>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
CustomLog /var/www/xxx/statistics/logs/access_ssl_log combined
ErrorLog /var/www/xxx/statistics/logs/error_log
</VirtualHost>
I created/opened apache port in ports.conf
Listen 6060
And checked if the port is opened
nmap -T Aggressive -A -v 127.0.0.1 -p 1-65000
Double checked everything here but still cannot access via the specified port 6060. What could be the problem?