-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
404 for files in public/ (LaravelValetDriver) #375
Comments
I just spent half an hour trying to figure out what was wrong with my favicon for my new spark project served behind valet. I'd be happy to figure out how to patch this if someone could point me in the right direction. |
I feel like I fixed this on the master branch a few months back, are you
running dev-master or latest tag?
…On Tue, Sep 12, 2017 at 6:08 PM Beau Simensen ***@***.***> wrote:
I just spent half an hour trying to figure out what was wrong with my
favicon for my new spark project served behind valet. I'd be happy to
figure out how to patch this if someone could point me in the right
direction.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#375 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AEH3bFK6c7UK0fCCYvDX-9Uf47iBz2O1ks5shwDLgaJpZM4NYQX5>
.
|
hm. let me see. it looks like i was one version back. the problem i'm having might be slightly different. commenting out the lines mentioned above didn't fix my problem. my problem is that getting /favicon.ico returns the actual image but gives status 404. so if i visit /favicon.ico in the browser directly, it renders just fine. |
Yeah that should be fixed, but if you are using local SSL on that site you'll need to resecure that site to generate an updated nginx config. |
Quick trick to regenerate configs for any SSL sites:
|
cool, thanks. i'm not doing local ssl. or rather, wasn't. just tried "valet secure mudskipper-dev" and it worked like a charm. loving valet even more now. :) thanks for your help! also, for the record, i did an update from valet v2.0.4 to v2.0.5 and it all looks good now. |
Sweet! |
I'm still having this issue. Just upgraded to v2.8.1 and still favicon.ico and my https://project.test/ is giving a 404 error on favicon, but opening https://project.test/favicon.ico directly does seem to work. |
It seems the issue with favicon.ico / robots.txt was fixed in this commit (v2.0.5) but was later re-introduced in #819 (v2.4.1). To work around this I have removed the favicon.ico and robots.txt location blocks from my Nginx configuration. |
I'm having the same issue. |
@stidges Great catch there. That's a fascinating issue... I'm curious how we can get rid of the error logs but also make it work |
I'm not a nginx expert unfortunately but what happens if you only have |
Also stumbled on this issue today, here is my workaround for now: Nginx is looking for a favicon.ico file at the root level. Just add /public on the files paths inside your config file, and run
If you have run Otherwise, the default valet nginx config file is located here: It might make more sense to edit it on a project basis, in case you don't only serve Laravel apps with Valet. |
@alexmartinfr solution worked for me but only after I found a copy of valet.conf in /opt/homebrew/etc/nginx/valet I guess it depends how you installed |
Hello All. Nice that I found this thread. I got very similar strange problem only for files located in root of public Symfony project, because it's not working for me on very legacy symfony 3.2 project but only if I do XMLHttpRequest or jQuery, but if I go to link directly in Chrome it works (by clicking on "open in new tab"). |
I just wanted to comment that this still seems to be an issue as of 3.2.2. To fix it, I modified
to
|
Still having this issue on Laravel Valet 3.3.2. Could we get this issue reopened? I'm unclear to me what the underlying cause is here but commenting out the |
I'm not convinced this is correct. The I'm not using valet a lot these days, but I still get notified about messages like this because I was dealing with it at one point. I did a quick google search and came up with the following: https://stackoverflow.com/a/45562682
It occurred to me that since location is sorta "virtual," what it's doing is slapping some additional metadata around the location that is in addition to the actual file on disk. I have no idea why nginx is both deciding based on this that it will return a 404 and then do the work to get the actual content from disk (wat?) but maybe it makes sense? If you are adding a location context maybe the assumption is that nginx should use the location context to derive most everything about that request from the location? I wanted to see if there was a more complex https://github.com/vstoykovbg/nginx.conf-examples/blob/master/favicon.ico.md
This would look to see if the requested file exists and send a 404 only if it does not. In short, it seems like we have a few options for how we could default this: Assume everything is good to go and default to 200 or 204 or something
Pros
Cons
Check to see if the file exists and throw a 404 if not
Pros
Cons
Honestly, I think the last one, even though a bit "heavier", is probably the behavior everyone expects? It's what I expected for sure. I'd expect that we're telling nginx that for robots.txt and favicon.ico, we know those get asked for a lot, we aren't sure they actually exist, and we don't want to see them in the access log, and we also don't care if they are not there so do not bother showing me an error log about it. |
Great write up, @simensen (hello, fellow Wisconsinite!). I agree – the "heavier" behavior you detailed at the end is what I expected. However, while I don't speak fluent nginx, I noticed Laravel Forge uses a very similar configuration, so perhaps something earlier in Valet's config is the culprit? For example, I'm not quite sure how these two blocks are supposed to interact:
Here's Forge's config for reference, which works just fine for favicons:
EDIT |
@shengslogar I wonder if this is a simple order-of-operations issue? Can you try putting the unmodified favicon/robots directives before the root redirect/last directive?
Since that root-level rewrite has It looks like the way valet/cli/Valet/Drivers/ValetDriver.php Line 137 in d1967bb
Maybe it won't matter, but might be worth a try? Would involve not changing the "standard" way to silence favicon and robots without other weird side effects like serving the file with a 404 or NOT serving a file and still having a 200/204 response which would likely confuse people for the same reason. |
@simensen I think this should work, but only because the final |
@simensen Moving those blocks above yields the same weird 404-but-directly-accessible behavior. |
@shengslogar Nginx doesn't really care how you order the blocks... it has its own rules for matching priority: http://nginx.org/en/docs/http/ngx_http_core_module.html#location |
for anyone using Laravel Herd (which uses Valet under the hood) the nginx config files are located in |
For me it was simply removing the leading -location = /favicon.ico { access_log off; log_not_found off; }
+location = favicon.ico { access_log off; log_not_found off; }
-location = /robots.txt { access_log off; log_not_found off; }
+location = robots.txt { access_log off; log_not_found off; } |
I always get a status code 404 for existing files which are directly located under public/ on a fresh install (favicon.ico, robots.txt), but the files are delivered. If I name them differently, it's working with a 200. Files in subdirectories css/, js/ are served properly with a status code 200.
Edit: I figured out that the problem is located in the Nginx config. If I comment out these lines, favicon.ico and robots.txt are served.
The text was updated successfully, but these errors were encountered: