<div dir="ltr"><div dir="ltr"><br></div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Dec 11, 2019 at 8:30 PM Francis Daly <<a href="mailto:francis@daoine.org">francis@daoine.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Tue, Dec 10, 2019 at 11:50:21PM +0000, James Read wrote:<br>
<br>
Hi there,<br>
<br>
nginx uses a single config file, which may "include" other files.<br>
<br>
When a request comes in to nginx, it chooses one "server" to handle<br>
the request; and then (with some exceptions) it chooses one "location"<br>
to handle the request.<br>
<br>
> I edited the config file as follows:<br>
> <br>
> http {<br>
>         server {<br>
>                 location / {<br>
>                         root /www;<br>
>                 }<br>
>         }<br>
> ...<br>
> }<br>
> <br>
> I then reloaded the config file with sudo nginx -s reload. I created a test<br>
> file at /www/index.html then when I tried to load the page in my browser I<br>
> still got the default Welcome to nginx! page.<br>
> <br>
> What am I doing wrong?<br>
<br>
One possibility is that your browser had cached its previous request<br>
to nginx, so it never asked nginx for the request this time. If you<br>
use "curl" to make a test request of the page, it should avoid that<br>
possibility.<br>
<br>
Another possibility is that the config file that you edited is not the<br>
config file that the running nginx is using.<br>
<br>
Or maybe, the server{} that you edited is not the server{} that nginx<br>
chooses to handle the particular request that you made.<br>
<br>
The nginx access log file should show something if the request got to<br>
nginx -- that might rule out the first possibility above.<br>
<br>
The nginx error log -- especially if it is in "debug" mode -- may show far<br>
more than you ever want to know about what nginx is doing with a request.<br>
<br>
That *might* show something about the other possibilities.<br>
<br></blockquote><div><br></div><div>Access log shows that page hasn't changed http code 304:</div><div><br></div><div>127.0.0.1 - - [11/Dec/2019:20:46:42 +0000] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36"<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
> I also tried editing the page at /usr/share/nginx/html/index.html None of<br>
> my edits seem to have any effect. When I tried to load the page in my<br>
> browser I still got the default Welcome to nginx! page.<br>
<br>
That one is most likely browser caching, I guess.<br>
<br>
Cheers,<br>
<br>
        f<br>
-- <br>
Francis Daly        <a href="mailto:francis@daoine.org" target="_blank">francis@daoine.org</a><br>
_______________________________________________<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" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div></div>