A beginner's guess...<div><br></div><div>Your server is listening on port 443 (HTTPS).  Your log file shows that the file not found is being generated by the HTTP protocol for which your configuration is not listening on.  Are you should that you're accessing your site using "https://" and not "http://"?</div>
<div><br></div><div>...GET /wac HTTP/1.1", ...</div><div><br></div><div><br></div><div> </div><div><br><div class="gmail_quote">On Mon, Oct 31, 2011 at 11:05 PM, Philip Rhoades <span dir="ltr"><<a href="mailto:phil@pricom.com.au">phil@pricom.com.au</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">People,<br>
<br>
I want to switch my Apache SSL to Nginx - that might help me resolve a Ruby on<br>
Rails issue and it is too much work to change all the non-SSL stuff over as<br>
well - I will do that later when I have time.  So for the time being, http will<br>
be handled by Apache and https will be handled by Nginx.<br>
<br>
I commented out the default server in:<br>
<br>
  /etc/nginx/nginx.conf<br>
<br>
and changed:<br>
<br>
  /etc/nginx/conf.d/ssl.conf<br>
<br>
thus:<br>
<br>
#<br>
# HTTPS server configuration<br>
#<br>
<br>
server {<br>
    listen       443;<br>
    server_name  <a href="http://www.pricom.com.au" target="_blank">www.pricom.com.au</a>;<br>
    access_log /var/log/nginx/nginx.vhost.<u></u>access.log;<br>
    error_log /var/log/nginx/nginx.vhost.<u></u>error.log;<br>
<br>
    ssl                  on;<br>
    ssl_certificate      /etc/httpd/conf/ssl.crt/<u></u>RapidSSL.crt;<br>
    ssl_certificate_key  /etc/httpd/conf/ssl.key/mars-<u></u>server.key;<br>
<br>
    ssl_session_timeout  5m;<br>
<br>
    ssl_protocols  SSLv2 SSLv3 TLSv1;<br>
    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+<u></u>HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;<br>
    ssl_prefer_server_ciphers   on;<br>
<br>
    location / {<br>
        root   /var/www/ssl/wac;<br>
    }<br>
}<br>
<br>
but in:<br>
<br>
  /var/log/nginx/nginx.vhost.<u></u>error.log<br>
<br>
I get:<br>
<br>
2011/11/01 13:50:28 [error] 9411#0: *7 open() "/usr/share/nginx/html/wac"<br>
failed (2: No such file or directory), client: 203.206.181.78, server:<br>
<a href="http://www.pricom.com.au" target="_blank">www.pricom.com.au</a>, request: "GET /wac HTTP/1.1", host: "<a href="http://pricom.com.au" target="_blank">pricom.com.au</a>"<br>
<br>
Why is nginx reverting to the default path and how is it getting the right<br>
dir without the correct path?<br>
<br>
Thanks,<br>
<br>
Phil.<br><font color="#888888">
<br>
-- <br>
Philip Rhoades<br>
<br>
GPO Box 3411<br>
Sydney NSW      2001<br>
Australia<br>
E-mail:  <a href="mailto:phil@pricom.com.au" target="_blank">phil@pricom.com.au</a><br>
<br>
______________________________<u></u>_________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/<u></u>mailman/listinfo/nginx</a><br>
</font></blockquote></div><br><br><br>
</div>