> I'm not surprised that this feature might exist in uWSGI :D > > Can you point out where it's implemented in config.c/whatever though? I > could read up on it and write some docs. > > Thanks!
I have added this some minutes ago: https://github.com/unbit/uwsgi-docs/commit/3ad9646e695ded6a0a96337181f62f43aded95f1 the '@' magic is called here https://github.com/unbit/uwsgi/blob/master/core/uwsgi.c#L2127 the function to manage it is: https://github.com/unbit/uwsgi/blob/master/core/uwsgi.c#L1919 but all happens in core/io.c https://github.com/unbit/uwsgi/blob/master/core/uwsgi.c#L1919 that has support for modular "schemes" https://github.com/unbit/uwsgi/blob/master/core/io.c#L1243 (plugins can register more schemes) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
