summary refs log tree commit diff
path: root/pkgs/servers/caddy
Commit message (Collapse)AuthorAge
* caddy: add `meta.mainProgram` attributePol Dellaiera2023-10-14
|
* caddy: fix caddyserver/dist hash after upstream updated the tagemilylange2023-10-12
| | | | This was a due to a miscommunication in the caddy team.
* caddy: 2.7.4 -> 2.7.5emilylange2023-10-12
| | | | | https://github.com/caddyserver/caddy/releases/tag/v2.7.5 diff: https://github.com/caddyserver/caddy/compare/v2.7.4...v2.7.5
* caddy: 2.7.3 -> 2.7.4emilylange2023-08-18
| | | | | https://github.com/caddyserver/caddy/releases/tag/v2.7.4 diff: https://github.com/caddyserver/caddy/compare/v2.7.3...v2.7.4
* Merge pull request #247973 from emilylange/xcaddyNick Cao2023-08-08
|\ | | | | xcaddy: 0.3.4 -> 0.3.5
| * xcaddy: 0.3.4 -> 0.3.5emilylange2023-08-08
| | | | | | | | | | https://github.com/caddyserver/xcaddy/releases/tag/v0.3.5 https://github.com/caddyserver/xcaddy/compare/v0.3.4...v0.3.5
* | caddy: 2.6.4 -> 2.7.3emilylange2023-08-07
|/ | | | | | | | | | | 2.7.0-2.7.2 have been skipped due to bugs in the release. https://github.com/caddyserver/caddy/releases/tag/v2.7.3 https://github.com/caddyserver/caddy/releases/tag/v2.7.2 https://github.com/caddyserver/caddy/releases/tag/v2.7.1 https://github.com/caddyserver/caddy/releases/tag/v2.7.0 diff: https://github.com/caddyserver/caddy/compare/v2.6.4...v2.7.3
* caddy: Fix shell-completionsAndreas Bielawski2023-06-16
|
* maintainers: rename indeednotjames to emilylangeemilylange2023-05-21
|
* xcaddy: 0.3.3 -> 0.3.4IndeedNotJames2023-05-18
| | | | | https://github.com/caddyserver/xcaddy/releases/tag/v0.3.4 diff: https://github.com/caddyserver/xcaddy/compare/v0.3.3...v0.3.4
* xcaddy: 0.3.2 -> 0.3.3IndeedNotJames2023-04-26
| | | | | https://github.com/caddyserver/xcaddy/releases/tag/v0.3.3 diff: https://github.com/caddyserver/xcaddy/compare/v0.3.2...v0.3.3
* caddy: add shell completions for fishIndeedNotJames2023-02-19
|
* caddy: install man pagesIndeedNotJames2023-02-19
|
* caddy: 2.6.3 -> 2.6.4IndeedNotJames2023-02-14
| | | | https://github.com/caddyserver/caddy/releases/tag/v2.6.4
* caddy: 2.6.2 -> 2.6.3IndeedNotJames2023-02-09
| | | | https://github.com/caddyserver/caddy/releases/tag/v2.6.3
* caddy: add indeednotjames as maintainerIndeedNotJames2023-02-09
|
* xcaddy: fix build infoIndeedNotJames2023-02-07
|
* xcaddy: add indeednotjames as maintainerIndeedNotJames2023-02-07
|
* xcaddy: 0.3.1 -> 0.3.2IndeedNotJames2023-02-07
|
* caddy: 2.6.1 -> 2.6.2techknowlogick2022-10-13
|
* caddy: 2.6.0 -> 2.6.1techknowlogick2022-09-22
|
* caddy: 2.5.2 -> 2.6.0techknowlogick2022-09-20
|
* xcaddy: use temp dir on DarwinTheodore Ni2022-09-19
| | | | | | | | | | | | Upstream xcaddy uses the $HOME directory as the temp directory on Darwin in order to fix an interesting bug. In order to find version information for Caddy, it runs a command that needs to operate on file system without "noexec" set, but Darwin's temp directory has it set. We can tolerate losing version information, since the alternative is that xcaddy does not run on Darwin.
* xcaddy: init at 0.3.1.Theodore Ni2022-09-18
| | | | | | | | | | | | A tool that can be used to build the Caddy webserver with plugins. It functions as its own package manager and calls out to the network, so it can't build Caddy in nixpkgs, but it's useful for environments that: 1. Do not need sandboxed and reproducible builds. 2. Pin Caddy and plugin versions when using the tool and trust it to be a reproducible, fixed derivation.
* caddy: 2.5.1 -> 2.5.2techknowlogick2022-07-12
|
* caddy: 2.5.0 -> 2.5.1techknowlogick2022-05-06
|
* caddy: 2.4.6 -> 2.5.0techknowlogick2022-04-26
|
* caddy: include and utilize systemd service from upstream (#147305)Aaron Andersen2021-11-29
|
* caddy: 2.4.5 -> 2.4.6happysalada2021-11-08
|
* caddy: 2.4.4 -> 2.4.5happysalada2021-09-06
|
* caddy: 2.4.3 -> 2.4.4 (#136252)Raphael Megzari2021-08-31
|
* caddy: 2.4.1 -> 2.4.3happysalada2021-08-17
|
* caddy: 2.4.0 -> 2.4.1R. RyanTM2021-05-20
|
* caddy: 2.3.0 -> 2.4.0R. RyanTM2021-05-11
|
* treewide: remove stdenv where not neededPavol Rusnak2021-01-25
|
* treewide: with stdenv.lib; in meta -> with lib;Profpatsch2021-01-11
| | | | | | | | | | | | | | | | | | | Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
* caddy: 2.2.1 -> 2.3.0Mario Rodas2021-01-05
| | | | https://github.com/caddyserver/caddy/releases/tag/v2.3.0
* maintainers: rename filalex77 -> Br1ght0neOleksii Filonenko2020-11-17
|
* caddy: 2.2.0 -> 2.2.1R. RyanTM2020-10-25
|
* caddy1: removezowoq2020-10-02
|
* caddy: 2.1.1 -> 2.2.0zowoq2020-09-25
| | | | https://github.com/caddyserver/caddy/releases/tag/v2.2.0
* caddy1: fix build (#97988)pancho horrillo2020-09-14
| | | | | | | main.go gets overwritten in order to build caddy with telemetry disabled, but the global variable `run` got neglected, and this in turn broke the test in caddy/main_test.go. This commit fixes that, and build can now complete.
* caddy: 2.0.0 -> 2.1.1Sylvain Fankhauser2020-09-08
|
* caddy: address remaining MR comments for v2Sylvain Fankhauser2020-09-08
|
* caddy: 1.0.5 -> 2.0.0Oleksii Filonenko2020-09-07
| | | | Rename legacy v1 to `caddy1`
* treewide: remove obsolete attribute goPackagePath in buildGoModule ↵Timothy Stott2020-08-11
| | | | | derivations (#95092) The buildGoModule infrastructure does not make use of goPackagePath it is a residue from buildGoPackage.
* buildGoModule packages: set doCheck = falsezowoq2020-08-10
|
* Merge pull request #94280 from zowoq/ecc-gomoduleJörg Thalheim2020-07-31
|\ | | | | buildGoModule packages: editorconfig fixes
| * buildGoModule packages: editorconfig fixeszowoq2020-07-31
| |
* | caddy2: 2.0.0 -> 2.1.1Mario Rodas2020-07-29
|/