clarkwinkelmann
The author of that repo has written a index.php which is intended to place in assets/, and all request to the heavy js/css in assets/ need to be redirected to the index.php in assets/.
This index.php will than redirect the requests to the CDN to accelerate forum.
I have tried things like this, using an apache2nginx config converter
if ($request_filename !~ "index.php"){
set $rule_0 1$rule_0;
}
if ($rule_0 = "1"){
rewrite ^/ /index.php last;
}
But it does not work. According to the author the .htaccess file place in assets/ file, and I tried using things like Location ^~ assets/{} but still does not work...