You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last regex location will catch any uri that ends in .php, even if it starts with "rainloop". That's because nginx first parses the location prefixes, and then moves on to the location regexes. If you want nginx to skip the regex matching if a certain prefix match is made, use the "^~" modifier. Try:
This is more of a request for assistance than an issue so apologies if it shouldn't have been posted here. Hopefully someone can help though!
I'm trying to get Rainloop webmail up and running on a server that also hosts a Drupal site. I'm using Perusio's Nginx config.
I basically just want to add a location to handle the path to Rainloop so that the webmail will be accessible via https://example.com/rainloop.
I've added the following just outside the default location block in drupal.conf:
It's returning 404 even though the paths are correct. I suspect it's to do with one or both of these locations at the end of the config:
How do make an exception to these 404 rules for the rainloop directory?
The text was updated successfully, but these errors were encountered: