-
Notifications
You must be signed in to change notification settings - Fork 788
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
Nginx support - Add Rewrites rules #407
Comments
[edit: closing this was accidential, ticket is now open again] |
If not you, someone from community willl add support for nginx. |
@GrahamCampbell I tried this if (!-e $request_filename){ |
this should work add this to your location / {
try_files $uri $uri/ @rewrite;
}
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
} |
Has anyone been able to get this working with Nginx? |
How do it with Nginx? |
Can someone please add instructions to support for nginx server?
I personally used this project on apache and later i tried to move to nginx. i'm facing issues with rewrite rules.
Why nginx?
Apache has serious configuration issues especially for low memory boxes
nginx is super fast
Amount of work?
I'm not expert on nginx but i'm definitely sure, it is just couple of correct rewrite rules to make it work.
The text was updated successfully, but these errors were encountered: