Variable name | Data type | Description | |
---|---|---|---|
SPACES_DATA | string | json string to configure the Defines and creates spaces. JSON array with spaces (with key, title and databaseName) Example:
| |
| string |
| |
| string |
| |
| string | The base URI context path for the server. If not set, defaults to the root context. | |
CORS_ENABLED | boolean | Enables or disables Cross-Origin Resource Sharing (CORS) at the security level. | |
CSRF_ENABLED | boolean | Enables or disables Cross-Site Request Forgery (CSRF) protection. | |
MONGO_CONNECTION_STRING | string | Defines the full mongodb connection string. Should include hostname (or multiple, if a replica set with multiple nodes is used) including port(s) and optionally the DB name.
Example:
or for multiple hosts:
| |
MONGO_TRANSACTIONS_ENABLED | boolean | Enables or disables MongoDB transactions. Defaults to false. Note: Can only be enabled if the mongodb deployment uses a replica set. | |
OAUTH10A_ACTIVE and OAUTH10A_ENABLE | boolean | Control whether OAuth 1.0a is active and enabled in the application. | |
OAUTH10A_CONSUMER_KEY | string | Consumer key for OAuth 1.0a authentication. | |
OAUTH10A_CONSUMER_SECRET | string | Consumer secret for OAuth 1.0a authentication. | |
OAUTH10A_NAME | string | The name for the OAuth 1.0a configuration. | |
OAUTH10A_PROTECTED_URL_ROOT | string | Specifies the protected URLs for OAuth 1.0a authentication (comma seperated). | |
OAUTH10A_ROOT_SERVICE_URL | string | URL for the OAuth 1.0a root services. | |
PORT | integer | Sets the port on which the server will listen. Default is 8080 if not specified. | |
PUBLIC_URL | string | The public-facing URL of the server, used for building absolute URLs. Default is http://localhost with the specified server port. | |
X_FRAME_SAME_ORIGIN | string | Controls the 'X-Frame-Options' header for clickjacking protection. Defaults to true. |
Variable name | Data type | Description |
---|---|---|
| string | Default client ID for authentication |
| string | Default client secret for authentication |
| string | URI of the issuer for authentication |
| string | Authorization URI |
| string | Token URI for obtaining access and refresh tokens |
| string | User info URI to obtain user details |
| string | URI to obtain JSON Web Key Set |
| string | End session URI for logging out |
| boolean | Indicates whether Proof Key for Code Exchange (PKCE) is used |
| string | Attribute name for client roles |
| string | Attribute name for user ID |
| string | Attribute name for user name |
| string | Attribute name for user's first name |
| string | Attribute name for user's last name |
| string | Attribute name for user's email address |