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
..
2015-06-15 18:18:46 +02:00
2015-02-03 22:08:10 +01:00
2015-06-15 18:11:32 +02:00
2015-05-01 17:11:55 -04:00
2015-06-15 18:18:46 +02:00
2015-06-15 18:18:46 +02:00
2015-06-08 08:35:12 +00:00
2015-10-22 14:34:02 +03:00
2014-09-03 15:47:53 +04:00
2015-06-21 18:21:21 +03:00
2015-06-21 18:21:21 +03:00
2015-06-21 18:21:21 +03:00
2015-07-07 10:58:58 +02:00
2014-09-01 10:53:19 +04:00
2015-06-15 18:18:46 +02:00