I think your Nginx configuration could possibly be the cause of the
problem. Replace what you have with this:

I've added the headers which are always a good idea. Thanks for the input.

The real reason was the regular expression in `rewrite` which did not capture `/` in the path. The correct `rewrite` is:

rewrite /shortenyoururl(/.+) $1 break;

Now it works.

Lutz

_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to