apache v2.4.33
One of the upgrades from leap 42.3 to leap 15 was apache2 v2.4.23 to v2.4.33. Since then, no local network site loads.
- https requests return error 403: Access Forbidden!
- http requests return error 400: Bad Request!
I have read the docs. I have added what seemed like the correct directive for allowing access. Still no access allowed. I especially do not get the Bad Request.
What is incorrect with the vhost?
The only message in the error log:
[Tue Jul 17 11:40:13.549312 2018] [access_compat:error] [pid 9500] [client 192.168.69.115:52878] AH01797: client denied by server configuration: /data01/t-drv/websites/sma-v3/, referer: https://www.sma.com/
Here is one of the vhost configuration files.
<VirtualHost *:80> ServerAdmin [EMAIL="jimoe@sohnen-moe.com"]jimoe@sohnen-moe.com[/EMAIL]
ServerName sma-v3.sma.com
DocumentRoot "/data01/t-drv/websites/sma-v3"
ErrorDocument 404 /404.php
ErrorDocument 410 /410.php
ErrorDocument 401 /401.php
ErrorLog "*/data01/t-drv/websites/.logs/sma-v3-error_log"
CustomLog "*/data01/t-drv/websites/.logs/sma-v3-access_log" common
<Directory "/data01/t-drv/websites/sma-v3">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<IfDefine SSL>
<IfModule mod_ssl.c>
<VirtualHost *:443>
# General setup for the virtual host
DocumentRoot "/data01/t-drv/websites/sma-v3"
ServerName sma-v3.sma.com
ServerAdmin [EMAIL="jimoe@sohnen-moe.com"]jimoe@sohnen-moe.com[/EMAIL]
ErrorLog "*/data01/t-drv/websites/.logs/sma-v3s-error_log"
CustomLog "*/data01/t-drv/websites/.logs/sma-v3s-access_log" common
TransferLog "*/data01/t-drv/websites/.logs/access_log"
ErrorDocument 404 /404.php
ErrorDocument 410 /410.php
ErrorDocument 401 /401.php
<Directory "/data01/t-drv/websites/sma-v3">
AllowOverride All
Options -ExecCGI
Options Indexes FollowSymLinks
Require all granted
</Directory>
SSLEngine on
SSLCertificateChainFile "/data01/srv/vhosts.sma/ssl/sma-ca-chain.cert.pem"
SSLCertificateFile "/data01/srv/vhosts.sma/ssl/www.sma.com.cert-01.pem"
SSLCertificateKeyFile
"/data01/srv/vhosts.sma/ssl/www.sma.com.insecure-01.key"
SSLCipherSuite HIGH:!SSLv2:!ADH:!aNULL:!eNULL:!NULL
</VirtualHost>
</ifmodule>
</ifdefine>*****