nixpkgs/nixos/modules
makefu 0bdc5e269b 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";
        };
      };
    };
2015-11-23 22:10:14 +01:00
..
config i18n: add color scheme option (close #9626) 2015-11-09 14:53:59 +01:00
hardware Put all firmware in $out/lib/firmware 2015-08-25 00:40:34 +02:00
installer Merge pull request #10586 from dezgeg/pr-arm-tweaks 2015-10-25 04:31:03 +03:00
misc services/misc/bepasty: init at 2015-10-21 2015-11-23 22:10:14 +01:00
profiles Change the preset networking.hostId to use mkDefault so it can be easily changed by the user later 2015-11-22 01:03:16 +11:00
programs nixos: remove debug code accidentally checked in with 833a597156 2015-11-18 16:37:38 +01:00
security nixos: fix some types 2015-09-18 18:48:50 +00:00
services services/misc/bepasty: init at 2015-10-21 2015-11-23 22:10:14 +01:00
system systemd module: Add OnFailure to systemd common unit options 2015-11-16 15:12:28 +01:00
tasks Merge pull request #10218 from offlinehacker/nixos/format_options 2015-11-18 22:33:01 +01:00
testing test-instrumentation.nix: Prevent calling a pager 2015-01-15 14:39:29 +01:00
virtualisation nixos/docker: enable socketActivation by default 2015-11-20 23:01:59 +01:00
module-list.nix services/misc/bepasty: init at 2015-10-21 2015-11-23 22:10:14 +01:00
rename.nix Factor out option renaming 2015-10-14 18:18:47 +02:00