summary refs log tree commit diff
path: root/pkgs/servers/http
Commit message (Collapse)AuthorAge
* jboss: remove phasesFelix Buehler2021-07-24
|
* nix-binary-cache: deprecate phasesFelix Buehler2021-07-22
|
* Merge master into staging-nextgithub-actions[bot]2021-07-18
|\
| * treewide: remove meta.versionFelix Buehler2021-07-18
| |
* | Merge master into staging-nextgithub-actions[bot]2021-07-17
|\|
| * openresty: 1.19.3.1 -> 1.19.3.2Thomas Gerbet2021-07-17
| | | | | | | | | | | | Fixes CVE-2021-23017. https://openresty.org/en/ann-1019003002.html
* | Merge master into staging-nextgithub-actions[bot]2021-07-12
|\|
| * jetty: 9.4.41.v20210516 -> 9.4.43.v20210629R. RyanTM2021-07-10
| |
* | Merge master into staging-nextgithub-actions[bot]2021-07-09
|\|
| * Merge pull request #129694 from helsinki-systems/upd/nginxSandro2021-07-09
| |\ | | | | | | nginxMainline: 1.21.0 -> 1.21.1
| | * nginxMainline: 1.21.0 -> 1.21.1ajs1242021-07-08
| | |
| * | nginxQuic: 1fec68e322d0 -> 5b0c229ba5feajs1242021-07-08
| |/
* | Merge pull request #126962 from stigtsp/package/perl-5.34.0Martin Weinelt2021-07-06
|\ \ | |/ |/|
| * unit: add perl534 as default, remove perl530Stig Palmquist2021-06-16
| |
* | trafficserver: 9.0.1 -> 9.0.2Thomas Gerbet2021-07-05
| | | | | | | | Fixes CVE-2021-32566 and CVE-2021-32567.
* | Merge pull request #127030 from r-ryantm/auto-update/gitlab-pagesMario Rodas2021-07-03
|\ \ | | | | | | gitlab-pages: 1.39.0 -> 1.40.0
| * | gitlab-pages: 1.39.0 -> 1.40.0R. RyanTM2021-06-16
| |/
* | pomerium: 0.14.4 -> 0.14.7Luke Granger-Brown2021-06-30
| |
* | nginxModules.rtmp: 1.2.1 -> 1.2.2Alvar Penning2021-06-21
| | | | | | | | | | This new release fixes segfaults, https://github.com/arut/nginx-rtmp-module/compare/v1.2.1...v1.2.2
* | tomcat9: remove danbst as maintainerAaron Andersen2021-06-16
| |
* | tomcat8: drop packageAaron Andersen2021-06-16
| |
* | tomcat7: drop packageAaron Andersen2021-06-16
| |
* | tomcat10: init at 10.0.6Aaron Andersen2021-06-16
| |
* | tomcat-native: 1.2.28 -> 1.2.30Aaron Andersen2021-06-16
| |
* | tomcat9: 9.0.31 -> 9.0.46Aaron Andersen2021-06-16
|/
* nginxQuic: 12f18e0bca09 -> 1fec68e322d0Maciej Krüger2021-06-11
|
* apacheHttpd: 2.4.47 -> 2.4.48Alyssa Ross2021-06-10
|
* bmake.passthru.setupHook: set some defaultsAlyssa Ross2021-06-09
| | | | | | | | | | | These are all read from the environment by the default bmake stdlib (e.g. <bsd.prog.mk>, <bsd.own.mk>). Some of the default values (like building cat pages instead of man pages, or stripping binaries when installing) don't really make sense for Nixpkgs, so we override them here for every build using bmake. Eventually I'd like to unify the bmake setupHook and the NetBSD make setupHook, but not today.
* pomerium: 0.13.3 -> 0.14.4Luke Granger-Brown2021-06-07
|
* envoy: 1.16.2 -> 1.17.3Luke Granger-Brown2021-06-07
|
* unit: Add php80 and use it as defaultElis Hirwing2021-06-04
|
* php: Drop PHP 7.3 supportElis Hirwing2021-06-04
| | | | | | | | PHP 7.3 won't be supported by upstream for the entire life cycle of the 21.11 release. Also drop the pcre' alias since it isn't needed anymore since we don't need different pcre versions anymore.
* Merge pull request #125194 from Izorkin/update-unitajs1242021-06-01
|\ | | | | unit: 1.22.0 -> 1.24.0
| * unit: 1.22.0 -> 1.24.0Izorkin2021-06-01
| |
* | Merge pull request #124210 from liclac/bozohttpdLuke Granger-Brown2021-06-01
|\ \ | |/ |/| bozohttpd: init
| * bozohttpd: experimental darwin compat patchembr2021-05-31
| | | | | | | | | | | | | | | | | | As far as I can tell, libSystem on darwin provides a libm compatibility symlink, but not a libcrypt one. Prior art (eg. CPython) appears to use `stdenv.isDarwin` as a proxy for `stdenv.hostPlatform.libc == "libSystem"`, but the latter also works in cases where we're building on Darwin, but with eg. musl for some reason.
| * bozohttpd: minor formattingembr2021-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Nix style guide isn't exactly comprehensive, but this at least seems slightly closer to the examples: https://nixos.org/manual/nixpkgs/stable/#sec-syntax I'm annoyed that nixpkgs-fmt as of writing won't accept: COPTS = [ # ... ] ++ optional (...) "..." ++ optional (...) "..."; ...which seems to be the actual convention, looking at eg. pkgs.nginx.
| * bozohttpd: add bozohttpd-minimal targetembr2021-05-26
| |
| * bozohttpd: resolve warnings, serve >2GB files on 32bit hostembr2021-05-26
| | | | | | | | | | | | | | | | | | | | | | -D_DEFAULT_SOURCE *and* -D_GNU_SOURCE together resolve all warnings about implicitly defined functions. -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 enable gcc's Large File Extensions to allow a 32-bit host to serve files larger than 2GB. Based on what Makefile.boot does, for platforms without bmake: http://cvsweb.netbsd.org/bsdweb.cgi/src/libexec/httpd/Makefile.boot
| * bozohttpd: remove unnecessary checkFlagsembr2021-05-24
| |
| * bozohttpd: use bmake flags instead of a custom installPhaseembr2021-05-24
| |
| * bozohttpd: initembr2021-05-24
| |
* | Merge pull request #123563 from r-ryantm/auto-update/jettyRyan Mulligan2021-05-25
|\ \ | | | | | | jetty: 9.4.39.v20210325 -> 9.4.41.v20210516
| * | jetty: 9.4.39.v20210325 -> 9.4.41.v20210516R. RyanTM2021-05-18
| | |
* | | nginxMainline: 1.20.0 -> 1.21.0Izorkin2021-05-25
| | |
* | | nginxStable: 1.20.0 -> 1.20.1Izorkin2021-05-25
| |/ |/|
* | Prefer `pname` and `version` in `mkDerivation`s instead of `name` (#123438)Samuel Ainsworth2021-05-23
| | | | | | | | Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: nixpkgs-review <nixpkgs-review@example.com>
* | Merge pull request #123248 from r-ryantm/auto-update/gitlab-pagesMario Rodas2021-05-19
|\ \ | |/ |/| gitlab-pages: 1.38.0 -> 1.39.0
| * gitlab-pages: 1.38.0 -> 1.39.0R. RyanTM2021-05-16
| |
* | treewide: remove unzip where not neededBen Siraphob2021-05-16
| |