blob: 32a0db4f8400abf64dbd3563ffee878a70849e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# See https://stirlingtools.com/docs/Advanced%20Configuration/How%20to%20add%20configurations for more information
# If you want to override with environment parameter 'security.initialLogin.username' parameter naming SECURITY_INITIALLOGIN_USERNAME
SERVER_HOST="127.0.0.1" # server.host in settings
SERVER_PORT="8080" # server.port in settings
SECURITY_ENABLELOGIN=false # security.enableLogin in settings, set to 'true' to enable login
SECURITY_CSRFDISABLED=true # security.csrfDisabled in settings, Set to 'true' to disable CSRF protection (not recommended for production)
SECURITY_LOGINATTEMPTCOUNT=5 # security.loginAttemptCount in settings, lock user account after 5 tries
SECURITY_LOGINRESETTIMEMINUTES=120 # security.loginResetTimeMinutes in settings, lock account for 2 hours after x attempts
SECURITY_INITIALLOGIN_USERNAME=admin # security.initialLogin.username in settings, initial username for the first login
SECURITY_INITIALLOGIN_PASSWORD=stirling # security.initialLogin.password in settings, initial password for the first login
# Please add other environment variables according to this link on your own: https://stirlingtools.com/docs/Advanced%20Configuration/How%20to%20add%20configurations
|