regbo

Results 23 comments of regbo

I will open a ticket there, but I think it is specific to this plug-in somehow. Because the functionality for the other libdns operations required by Caddy work just fine....

@francislavoie yeah, that makes sense. I noticed they recently added an "AbsoluteName" function. Perhaps it fails with the obscure TLD. I'll try to dig into it now.

@francislavoie Just had a look and [AbsoluteName](https://pkg.go.dev/github.com/libdns/libdns#AbsoluteName) is indeed the culprit. It looks like [the code](https://github.com/libdns/libdns/blob/75d1f505ee7f0faee2fd02953faadf69d5eaf870/libdns.go#L114-L129) tacks on a dot and the zone to the domain. Something screwy then happens,...

I've been struggling with this lately, as I need a way to quickly switch upstream proxies during testing. If the upstream host and port doesn't change, browsermob won't switch to...

> No way to manipulate this currently. I'm not even sure where we'd add that configuration option in our API. Perhaps just copy the value sent with the request initiating...

Right. What about a default user agent tied to the connection pool? Or somehow allow intercepting on the Real connection?

IDK how helpful this is, but here is how we implemented a solution fo this issue. Basically we added a polling future (using the [threadly](https://github.com/threadly/threadly) library) which auto extends the...

IMO redisson has the easiest to use API, but it might be overkill in this situation. It supports async operations and has great locking and expiration support. Lettuce is more...

FWIW, here's how I solved it on docker compose: ``` version: "3.3" services: portainer: image: sonatype/nexus3:latest command: ['sh', '-c', 'chown -R 200:200 /nexus-data && $${SONATYPE_DIR}/start-nexus-repository-manager.sh'] ```

@leonghui I was able to fix this temporarily by storing the domain names in environment variables: https://caddyserver.com/docs/caddyfile-tutorial#environment-variables Here's an example: ``` command: - sh - -c - "echo '{\n}' >...