Branch: refs/heads/master
Home: https://github.com/NixOS/nixpkgs
Commit: 0bdc5e269be16aeaa946dd136051d8e4d15c6014
https://github.com/NixOS/nixpkgs/commit/0bdc5e269be16aeaa946dd136051d8e4d15c6014
Author: makefu <[email protected]>
Date: 2015-11-23 (Mon, 23 Nov 2015)
Changed paths:
M nixos/modules/misc/ids.nix
M nixos/modules/module-list.nix
A nixos/modules/services/misc/bepasty.nix
Log Message:
-----------
services/misc/bepasty: init at 2015-10-21
This module implements a way to start one or more bepasty servers.
It supports configuring the listen address of gunicorn and how bepasty
behaves internally.
Configuring multiple bepasty servers provides a way to serve pastes externally
without authentication and provide creating,listing,deleting pastes interally.
nginx can be used to provide access via hostname + listen address.
`configuration.nix`:
services.bepasty = {
enable = true;
servers = {
internal = {
defaultPermissions = "admin,list,create,read,delete";
secretKey = "secret";
bind = "127.0.0.1:8000";
};
external = {
defaultPermissions = "read";
bind = "127.0.0.1:8001";
secretKey = "another-secret";
};
};
};
Commit: 13426c14518f5ebde039c3ee9319ba38cb3500e4
https://github.com/NixOS/nixpkgs/commit/13426c14518f5ebde039c3ee9319ba38cb3500e4
Author: Arseniy Seroka <[email protected]>
Date: 2015-11-24 (Tue, 24 Nov 2015)
Changed paths:
M nixos/modules/misc/ids.nix
M nixos/modules/module-list.nix
A nixos/modules/services/misc/bepasty.nix
Log Message:
-----------
Merge pull request #10512 from makefu/bepasty-init-dev
services/misc/bepasty: init at 2015-10-21
Compare: https://github.com/NixOS/nixpkgs/compare/fa5de61315ab...13426c14518f_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits