Liam Crilly
Liam Crilly
Something probably broken with the refresh process. Check the error log for `OIDC refresh failure` messages.
Good news. Looks like the troubleshooting guide needs an extra item!
I don't think the word "previous" is actually used in error messages, and it would be confusing to introduce it now. Something like this would be far more useful. Now...
In my experience "previous configuration is invalid" is shown when Unit starts and tries to apply the configuration in the state directory. When applying configuration to a running instance I...
Variables don't contain spaces so why would we put (escaped) quotes (`\"`) around it? I also think the `$` prefix would make it clearer.
Hi @haikyuu , are you using Apple silicon? (M1/M2)
> 4. it's complicated to update js_modules already used If you use the `unitc` command line tool to edit a js_module, it will do the [necessary steps](https://github.com/nginx/unit/blob/master/tools/unitc#L269) for you. ```...
> [unitc] is a useful tool. It starts nano editor. Can it start vim editor? Yes, ``` $ unitc --help | grep -i edit EDIT # Opens the URI contents...
Try this ``` export EDITOR=vim sudo unitc /js_modules/util edit ``` Note that `edit` is one of the general options to `unitc` which does not require a `-` prefix. You can...
> this environment variable didn't work. '''shell echo $EDITOR vim ''' I tried vim, Vim, vi, Vi. It still started with nano editor. Very strange. This is how the tool...