I had a friend help me set up a wordpress website about a year ago using an NGINX config. It also worked with Grav but doesn’t work with Kirby. The Kirby template creator for Zero One said it was probably because of Rewrite that I’m unable to use it properly (front end theme just doesn’t show right like no themed menu and styling is missing). I’m on Ubuntu 18.04 currently.
I’d try to ask my friend for help fixing this issue, but can’t really do that without sharing the files with him. Being a paid theme I wouldn’t think it would be the right thing to do. He has no knowledge of how the files work in Kirby to help get this working and I can’t find an example template that is free that might help him that is properly themed/styled.
I know how to work with Kirby, just not configuration issues for the server side. This seems more picky than using other CMS software.
I did forward this config to my friend that has been helping me maintain the NGINX setup. The config files I looked at before were more messy than this one so thanks for linking to it.
Note that this was for the Zero One theme. The files for uikit kept changing file names on us when we were getting it close to getting it working. You can see the warnings for it at that point in the browser developer console. Which is why there is a permanent flag in the assets directory.
I would just note that it is not some Zero One/UIkit custom thing, CSS/JS files are cached with the help of the Cachebuster plugin and if the URL rewrites on a server is not working, files URLs break.
Good thing is that Timo included config option, so it is easily turned off
return [
'schnti.cachebuster.active' => false,
];
But, we will make it optional in an update in a few days. It will be set to false by default, and only who wants can enable it.