Eric Nemchik

Results 212 comments of Eric Nemchik

https://github.com/GhostWriters/DockSTARTer/pull/1321 This PR is the first step towards DS officially supporting solus. Once that merges I'll still have more work to do, but it opens the door.

[Shan.code-settings-sync-unresponsive.cpuprofile.txt](https://github.com/shanalikhan/code-settings-sync/files/4324921/Shan.code-settings-sync-unresponsive.cpuprofile.txt) Just had something happen that resulted in VS code directing me here. It said to attach this file.

I'd love to know how to get the bot to treat shiny as VIP and never transfer/release them.

Potential fix: https://github.com/getgrav/grav-plugin-admin/issues/2030#issuecomment-1224913020

In case anyone finds this in the future, Yubikey 5 series devices only support up to 32 credentials. https://support.yubico.com/hc/en-us/articles/4404456942738-FAQ#what-is-the-yubikey-s-account-limit- If you have more than that number of credentials I believe...

You can actually do a location block like this ``` location ~ /nzbget/([^\/:]*:[^\/:]*)/?(?:jsonrpc|jsonprpc|xmlrpc) ``` (Note that I just made that up, not tested) And then add `$1` to the proxy...

@lachlanhunt if you set ``` RestrictedUsername=api RestrictedPasword=136c1516-e91d-4fcd-8c31-b14f775e7fa5 ``` (Restricted, not control) you can then setup traefik to allow the urls ``` nzbget.example.com/nzbget/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/jsonrpc nzbget.example.com/nzbget/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/jsonprpc nzbget.example.com/nzbget/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/xmlrpc ``` or ``` nzbget.example.com/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/jsonrpc nzbget.example.com/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/jsonprpc nzbget.example.com/api:136c1516-e91d-4fcd-8c31-b14f775e7fa5/xmlrpc...

https://github.com/linuxserver/reverse-proxy-confs/blob/master/nzbget.subdomain.conf.sample https://github.com/linuxserver/reverse-proxy-confs/blob/master/nzbget.subfolder.conf.sample Both examples support the method mentioned.

Those proxy samples have location block for the nzbget jsonrpc endpoints. Those location blocks don't have auth on by default (Organizr or otherwise). They also have regular expressions to support...

Per lachlanhunt's instructions, run ``` echo -n "control:password1" | base64 ``` But use your control username and password Add ```nginx proxy_set_header Authorization "Basic the_base_64"; ``` To the first location in...