update module options

This commit is contained in:
Denis Lehmann 2022-04-25 09:43:35 +02:00
parent 078f5447a7
commit 69348fa45a
2 changed files with 9 additions and 10 deletions

View file

@ -72,15 +72,15 @@
All configuration options are:
| Option | Description | Default value |
|-----------+-----------------------------------+---------------|
| address | Bind address of the server | 127.0.0.1 |
| port | Port on which the server listens | 8000 |
| user | User under which the server runs | raincloud |
| group | Group under which the server runs | raincloud |
| cloudName | Name of the raincloud | raincloud |
| basePath | Base path of the raincloud | |
| secretKey | Flask secret key | i_am_a_key |
| Option | Description | Type | Default value |
|-----------+-----------------------------------+-------+---------------|
| address | Bind address of the server | =str= | =127.0.0.1= |
| port | Port on which the server listens | =int= | =8000= |
| user | User under which the server runs | =str= | =raincloud= |
| group | Group under which the server runs | =str= | =raincloud= |
| cloudName | Name of the raincloud | =str= | =raincloud= |
| basePath | Base path of the raincloud | =str= | |
| secretKey | Flask secret key | =str= | |
** Configuration

View file

@ -70,7 +70,6 @@
secretKey = mkOption {
type = types.str;
default = "i_am_a_key";
description = "Flask secret key";
};
};