logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: 404 not found https setup
Author
puertoblack2003



Joined: 31 Jul 2009
Posts: 121
Location: U.S

PostPosted: Fri 11 Apr '14 4:40    Post subject: 404 not found https setup Reply with quote

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

PostPosted: Fri 11 Apr '14 17:10    Post subject: Reply with quote

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

PostPosted: Sat 12 Apr '14 6:19    Post subject: Reply with quote

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

PostPosted: Sat 12 Apr '14 10:20    Post subject: Reply with quote

So what is in your errorrequest-ssl.log about that?
Back to top
puertoblack2003



Joined: 31 Jul 2009
Posts: 121
Location: U.S

PostPosted: Sat 12 Apr '14 17:56    Post subject: Reply with quote

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

PostPosted: Sat 12 Apr '14 20:02    Post subject: Reply with quote

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

PostPosted: Sun 13 Apr '14 4:36    Post subject: Reply with quote

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

PostPosted: Sun 13 Apr '14 5:35    Post subject: Reply with quote

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


Reply to topic   Topic: 404 not found https setup View previous topic :: View next topic
Post new topic   Forum Index -> Apache