Hello all. Our PCI DSS quarterly scanner says we need to stop HTTP CONNECT. Our Apache vhost file has sections for port 80 and for 8080.
I managed to stop it on the port 80 part, but the scanner is still saying CONNECT is there for port 8080. I'm lost.. any help would be much appreciated. I'm rather a beginner at Apache & Linux admin.
Here's a cut-down version of the vhost file, the lines with #'s are where I added "LimitExcept" in both Virtualhost chunks:
<VirtualHost *:80>
<Files /var/www/vhosts/error_logs/live-errors>
Order allow,deny
Deny from all
Satisfy All
</Files>
Alias /userfiles ZZZZZZ
<Directory ZZZZZZ>
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory #*$!#*$!>
Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
##########################
<LimitExcept GET POST>
deny from all
</LimitExcept>
##########################
</Directory>
</VirtualHost>
<VirtualHost *:8080>
<Directory QQQQQQ>
Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
##########################
<LimitExcept GET POST>
deny from all
</LimitExcept>
##########################
</Directory>
</VirtualHost>
Cheers,
Bill