ssl_error_log apache issue
Posted
by
lakshmipathi
on Server Fault
See other posts from Server Fault
or by lakshmipathi
Published on 2010-08-03T05:21:24Z
Indexed on
2014/06/09
21:27 UTC
Read the original article
Hit count: 277
https://localhost works but https://ipaddress didn't
cat logs/ssl_error_log
[Mon Aug 02 19:04:11 2010] [error] [client 192.168.1.158] (13)Permission denied: access to /ajaxterm denied
[root@space httpd]# cat logs/ssl_access_log
192.168.1.158 - - [02/Aug/2010:19:04:11 +0530] "GET /ajaxterm HTTP/1.1" 403 290
[root@space httpd]# cat logs/ssl_request_log
[02/Aug/2010:19:04:11 +0530] 192.168.1.158 SSLv3 DHE-RSA-CAMELLIA256-SHA "GET /ajaxterm HTTP/1.1" 290
httpd.conf file
NameVirtualHost *:443
<VirtualHost *:443>
ServerName localhost
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
<Directory /usr/share/ajaxterm >
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from All
</Directory>
DocumentRoot /usr/share/ajaxterm
DirectoryIndex ajaxterm.html
ProxyRequests Off
<Proxy *>
# Order deny,allow
Allow from all
</Proxy>
ProxyPass /ajaxterm/ http://localhost:8022/
ProxyPassReverse /ajaxterm/ http://localhost:8022/
ErrorLog error_log.log
TransferLog access_log.log
</VirtualHost>
How to fix this ?
© Server Fault or respective owner