.\" Generated by Mmark Markdown Processer - mmark.miek.nl .TH "COREDNS-LOADBALANCE" 7 "November 2020" "CoreDNS" "CoreDNS Plugins" .SH "NAME" .PP \fIloadbalance\fP - randomizes the order of A, AAAA and MX records. .SH "DESCRIPTION" .PP The \fIloadbalance\fP will act as a round-robin DNS load balancer by randomizing the order of A, AAAA, and MX records in the answer. .PP See Wikipedia \[la]https://en.wikipedia.org/wiki/Round-robin_DNS\[ra] about the pros and cons of this setup. It will take care to sort any CNAMEs before any address records, because some stub resolver implementations (like glibc) are particular about that. .SH "SYNTAX" .PP .RS .nf loadbalance [POLICY] .fi .RE .IP \(bu 4 \fBPOLICY\fP is how to balance. The default, and only option, is "round_robin". .SH "EXAMPLES" .PP Load balance replies coming back from Google Public DNS: .PP .RS .nf \&. { loadbalance round\_robin forward . 8.8.8.8 8.8.4.4 } .fi .RE 'ansg191/system-store'>ansg191/system-store Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/src/renamer.zig (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-11-06Fix symbol error with `make headers`Gravatar Jarred Sumner 1-0/+3
cc @lawrencecchen
2022-11-06Fix bug when passing ABI Types as integersGravatar Jarred Sumner 1-3/+5
2022-11-06Fixes https://github.com/oven-sh/bun/issues/1462Gravatar Jarred Sumner 2-4/+28
2022-11-06UndoGravatar Jarred Sumner 4-59/+12
2022-11-06Update action.ymlGravatar Jarred Sumner 1-1/+0
2022-11-06PrettierGravatar Jarred Sumner 1-1/+1
2022-11-06Pass `tar -C`Gravatar Jarred Sumner 4-6/+53
2022-11-06[TypeScript] Fix `export = value`Gravatar Jarred Sumner 2-0/+5
2022-11-06Fix artifact name, use tarballGravatar Jarred Sumner 3-12/+11
2022-11-06Try tarballGravatar Jarred Sumner 1-4/+4
2022-11-06Try againGravatar Jarred Sumner 4-0/+4
2022-11-06Node12 is deprecatedGravatar Jarred Sumner 4-28/+32
2022-11-06feat(child_process): add node:child_process polyfill (#1424)Gravatar Derrick Farris 4-3/+2756
* feat(child_process): beginning of child_process, add ChildProcess and spawn base case * fix(child_process): remove invalid single arg array syntax (thanks Copilot) * refactor(child_process): unhack Readable.on, move stuff into node:stream * feat(child_process): add more params for spawn, refactor, add fromWeb() to Readable * feat(child_process): finish rest of exports (minus fork), refactor, add tests * cleanup(streams): remove a bunch of unnecessary stuff * cleanup(child_process): remove dead refs * fix(child_process): fix stdio * fix(child_process): change stdio to bunStdio * test(child_process): uncomment timeout test * test(child_process): fix hanging tests * test(child_process): remove stray console.log * test(child_process): fix cwd test for linux * refactor(child_process): divide paths for encoded vs raw execFile stdio * fix(child_process): fix logic for execFile slow path
2022-11-06fix(subprocess): fix typo in spawnSync (#1464)Gravatar Derrick Farris 1-2/+2
2022-11-05Fix fetch api to accept stringifier object (#1460)Gravatar zhiyuan 2-11/+25
* fetch accept stringifier object * test: update fetch params tests
2022-11-03Fix crash in setTimeout/setIntervalGravatar Jarred Sumner 1-0/+5
2022-11-03Fix incorrect exit codeGravatar Jarred Sumner 1-9/+15
2022-11-03Fix crash when reading promise value wihtout checking if nullGravatar Jarred Sumner 1-0/+1
2022-11-03Fix `which` not handling absolute paths to a binGravatar Jarred Sumner 1-3/+20
This code has not been tested.
2022-11-03Fix `cmd not found in $PATH` printing raw structGravatar Jarred Sumner 1-1/+1
2022-11-03Delete unused fileGravatar Jarred Sumner 1-97/+0
2022-11-03Add minified prod build of react-dom/server.bun (#1458)Gravatar Colin McDonnell 2-6819/+138
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
2022-11-03chore: remove unecessary files (#1457)Gravatar Hyro 2-118/+0
* Delete labeler.yml * Delete labels.yml
2022-11-03Introduce `import.meta.primordials` for builtin JSGravatar Jarred Sumner 5-3/+95
the `import.meta` object in Bun now has a `primordials` object which makes a handful of globals safe for access. Inside of bun: or node: modules, it is a special object (ownKeys is not implemented, so Object.keys() wont work on it) - Array - String - `isPromise` - `isCallable` - `isConstructable` - `tryGetById(foo, "bar')` which is like foo?.bar - `arrayPush` which is like `Array.prototype.push` - `Bun` - `isAbortSignal` cc @ThatOneBro @lawrencecchen