Author |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Fri 11 Apr '14 4:40 Post subject: 404 not found https setup |
|
|
i have setup everything before using ssl without issue for using https url.Now I'm having issues for Apache 2.4.9.
In url https://tomysite.com i get
Not Found
HTTP Error 404. The requested resource was not found.
no error showing in logs |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Fri 11 Apr '14 17:10 Post subject: |
|
|
you may post the relevant config. If you don't know the relevant config than post it at pastebin and post here the link. |
|
Back to top |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Sat 12 Apr '14 6:19 Post subject: |
|
|
thank you this is my current config
Code: | <VirtualHost *:443>
SSLEngine on
Protocol https
ServerName www.sampledomain.org:443
SSLCertificateFile "D:/Apache2.2/conf/ssl.crt/serversample.crt"
SSLCertificateKeyFile "D:/Apache2.2/conf/ssl.key/serversample.key"
DocumentRoot "F:/htdocs/forum"
# DocumentRoot access handled globally in httpd.conf
CustomLog "logs/errorrequest-ssl.log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
<Directory "F:/htdocs/forum">
Options Indexes Includes FollowSymLinks
#AllowOverride AuthConfig Limit FileInfo
AllowOverride All
Require all granted
</Directory>
</virtualhost> |
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sat 12 Apr '14 10:20 Post subject: |
|
|
So what is in your errorrequest-ssl.log about that? |
|
Back to top |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Sat 12 Apr '14 17:56 Post subject: |
|
|
actually nothing i even checked the event log. ports are open and tested everything that i would think its causing an issue.don't know where else to look at. |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Sat 12 Apr '14 20:02 Post subject: |
|
|
What do you get when you start Apache in a command prompt ?
>httpd.exe -t |
|
Back to top |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Sun 13 Apr '14 4:36 Post subject: |
|
|
Code: | d:\www\server\Apache2.2\bin>httpd.exe -t
Syntax OK
d:\www\server\Apache2.2\bin> |
thanks for your help |
|
Back to top |
|
puertoblack2003
Joined: 31 Jul 2009 Posts: 121 Location: U.S
|
Posted: Sun 13 Apr '14 5:35 Post subject: |
|
|
update:
thank everyone for the help.After few hours i found out that it was a port open issue.On my server firewall the port is open.The router port forward was activated to port forward to lan ip.Well that didn't work.for some reason previously it was working before.I had to use port trigger in 4 slots. and that worked.
not sure what changed but to tire to figure out i hope this helps everyone else. |
|
Back to top |
|