Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Clear advice/configuration for nginx
In the official vanilla documentation it states the ?p= is no longer needed. However when looking through the search results for nginx configuration, every thread including posts by vanilla developers and forum moderators still includes a ?p= check.
Is there an official or working configuration for nginx without using the, according to the documentation depreciated, ?p= routing?
See, https://open.vanillaforums.com/discussion/comment/244840/#Comment_244840 https://open.vanillaforums.com/discussion/comment/242050/#Comment_242050 for previous advice which all use ?p=
0
Comments
This? http://docs.vanillaforums.com/developer/backend/
That's still using the same ?p= behind the scenes, perhaps I'm mis-understanding that is not actually depreciated?
It even states, "In Vanilla 2.3, these rules change because the p parameter has been removed in favor of strict usage of PATH_INFO, and therefore no rewrite is needed. However, it’s important that your fastcgi params are setup to pass this information to PHP." but there's no documentation or samples of that.
Because that's how nginx runs out of the box, as far as I can tell. There's nothing you need to do. It's pointing that out in case you removed it, in which case one would hope you know how to put it back.
This is what's in my localhost's
fastcgi_params
:Nothing fancy, just the basic pass-thrus.
I'm reluctant to start pasting exact files into our docs lest someone just start blindly copy/pasting things and then yell at me when they break their server.
I guess I can't get that to work out of the box, copying from https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/ with no other redirects I have
Results in a 404 for any of the non-index URLs, including fastcgi_params instead of the snippet results in 200 response with no body from the index, and still 404s for non-index. The fastcgi_params and snippets are both unmodified from the ubuntu nginx packaging.
Works, but I'm trying to stay current with the recommended configuration to prevent issues down the line.
It appears my localhost is still using the old 'p' parameter as well, so I'll ask to see what we're doing internally rather than conjecturing.
Just popping by to confirm that the following is working in nginx config on 2.3.1:
Which means the docs are a bit misleading, as I spent a good couple of nights tearing my hair out