start-wekan.sh 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. # If you want to restart even on crash, uncomment while and done lines.
  2. #while true; do
  3. cd ~/repos/wekan/.build/bundle
  4. #---------------------------------------------
  5. # Debug OIDC OAuth2 etc.
  6. #export DEBUG=true
  7. #---------------------------------------------
  8. export MONGO_URL='mongodb://127.0.0.1:27017/wekan'
  9. #---------------------------------------------
  10. # Production: https://example.com/wekan
  11. # Local: http://localhost:2000
  12. #export ipaddress=$(ifdata -pa eth0)
  13. export ROOT_URL='http://localhost:2000'
  14. #---------------------------------------------
  15. # https://github.com/wekan/wekan/wiki/Troubleshooting-Mail
  16. # https://github.com/wekan/wekan-mongodb/blob/master/docker-compose.yml
  17. export MAIL_URL='smtp://user:pass@mailserver.example.com:25/'
  18. #---------------------------------------------
  19. #export KADIRA_OPTIONS_ENDPOINT=http://127.0.0.1:11011
  20. #---------------------------------------------
  21. # This is local port where Wekan Node.js runs, same as below on Caddyfile settings.
  22. export PORT=2000
  23. #---------------------------------------------
  24. # ==== NUMBER OF SEARCH RESULTS PER PAGE BY DEFAULT ====
  25. #export RESULTS_PER_PAGE=20
  26. #---------------------------------------------
  27. # Wekan Export Board works when WITH_API=true.
  28. # If you disable Wekan API with false, Export Board does not work.
  29. export WITH_API='true'
  30. #---------------------------------------------------------------
  31. # ==== PASSWORD BRUTE FORCE PROTECTION ====
  32. #https://atmospherejs.com/lucasantoniassi/accounts-lockout
  33. #Defaults below. Uncomment to change. wekan/server/accounts-lockout.js
  34. #export ACCOUNTS_LOCKOUT_KNOWN_USERS_FAILURES_BEFORE=3
  35. #export ACCOUNTS_LOCKOUT_KNOWN_USERS_PERIOD=60
  36. #export ACCOUNTS_LOCKOUT_KNOWN_USERS_FAILURE_WINDOW=15
  37. #export ACCOUNTS_LOCKOUT_UNKNOWN_USERS_FAILURES_BERORE=3
  38. #export ACCOUNTS_LOCKOUT_UNKNOWN_USERS_LOCKOUT_PERIOD=60
  39. #export ACCOUNTS_LOCKOUT_UNKNOWN_USERS_FAILURE_WINDOW=15
  40. #---------------------------------------------------------------
  41. # ==== RICH TEXT EDITOR IN CARD COMMENTS ====
  42. # https://github.com/wekan/wekan/pull/2560
  43. export RICHER_CARD_COMMENT_EDITOR=false
  44. #---------------------------------------------------------------
  45. # ==== CARD OPENED, SEND WEBHOOK MESSAGE ====
  46. export CARD_OPENED_WEBHOOK_ENABLED=false
  47. #---------------------------------------------------------------
  48. # ==== Allow to shrink attached/pasted image ====
  49. # https://github.com/wekan/wekan/pull/2544
  50. #export MAX_IMAGE_PIXEL=1024
  51. #export IMAGE_COMPRESS_RATIO=80
  52. #---------------------------------------------------------------
  53. # ==== NOTIFICATION TRAY AFTER READ DAYS BEFORE REMOVE =====
  54. # Number of days after a notification is read before we remove it.
  55. # Default: 2
  56. #- NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE=2
  57. #---------------------------------------------------------------
  58. # ==== BIGEVENTS DUE ETC NOTIFICATIONS =====
  59. # https://github.com/wekan/wekan/pull/2541
  60. # Introduced a system env var BIGEVENTS_PATTERN default as "NONE",
  61. # so any activityType matches the pattern, system will send out
  62. # notifications to all board members no matter they are watching
  63. # or tracking the board or not. Owner of the wekan server can
  64. # disable the feature by setting this variable to "NONE" or
  65. # change the pattern to any valid regex. i.e. '|' delimited
  66. # activityType names.
  67. # a) Example
  68. #export BIGEVENTS_PATTERN=due
  69. # b) All
  70. #export BIGEVENTS_PATTERN=received|start|due|end
  71. # c) Disabled
  72. export BIGEVENTS_PATTERN=NONE
  73. #---------------------------------------------------------------
  74. # ==== EMAIL DUE DATE NOTIFICATION =====
  75. # https://github.com/wekan/wekan/pull/2536
  76. # System timelines will be showing any user modification for
  77. # dueat startat endat receivedat, also notification to
  78. # the watchers and if any card is due, about due or past due.
  79. #
  80. # Notify due days, default is None.
  81. #export NOTIFY_DUE_DAYS_BEFORE_AND_AFTER=2,0
  82. # it will notify user 2 days before due day and on the due day
  83. #
  84. # Notify due at hour of day. Default every morning at 8am. Can be 0-23.
  85. # If env variable has parsing error, use default. Notification sent to watchers.
  86. #export NOTIFY_DUE_AT_HOUR_OF_DAY=8
  87. #-----------------------------------------------------------------
  88. # ==== EMAIL NOTIFICATION TIMEOUT, ms =====
  89. # Defaut: 30000 ms = 30s
  90. #export EMAIL_NOTIFICATION_TIMEOUT=30000
  91. #-----------------------------------------------------------------
  92. # CORS: Set Access-Control-Allow-Origin header. Example: *
  93. #export CORS=*
  94. # To enable the Set Access-Control-Allow-Headers header. "Authorization,Content-Type" is required for cross-origin use of the API.
  95. #export CORS_ALLOW_HEADERS=Authorization,Content-Type
  96. # To enable the Set Access-Control-Expose-Headers header. This is not needed for typical CORS situations. Example: *
  97. #export CORS_EXPOSE_HEADERS=*
  98. #---------------------------------------------
  99. ## Optional: Integration with Matomo https://matomo.org that is installed to your server
  100. ## The address of the server where Matomo is hosted:
  101. ##export MATOMO_ADDRESS=https://example.com/matomo
  102. #export MATOMO_ADDRESS=
  103. ## The value of the site ID given in Matomo server for Wekan
  104. # Example: export MATOMO_SITE_ID=123456789
  105. #export MATOMO_SITE_ID=''
  106. ## The option do not track which enables users to not be tracked by matomo"
  107. #Example: export MATOMO_DO_NOT_TRACK=false
  108. #export MATOMO_DO_NOT_TRACK=true
  109. ## The option that allows matomo to retrieve the username:
  110. # Example: export MATOMO_WITH_USERNAME=true
  111. #export MATOMO_WITH_USERNAME='false'
  112. # Enable browser policy and allow one trusted URL that can have iframe that has Wekan embedded inside.
  113. # Setting this to false is not recommended, it also disables all other browser policy protections
  114. # and allows all iframing etc. See wekan/server/policy.js
  115. # Default value: true
  116. export BROWSER_POLICY_ENABLED=true
  117. # When browser policy is enabled, HTML code at this Trusted URL can have iframe that embeds Wekan inside.
  118. # Example: export TRUSTED_URL=http://example.com
  119. export TRUSTED_URL=''
  120. # What to send to Outgoing Webhook, or leave out. Example, that includes all that are default: cardId,listId,oldListId,boardId,comment,user,card,commentId .
  121. # Example: export WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId
  122. export WEBHOOKS_ATTRIBUTES=''
  123. #---------------------------------------------
  124. # ==== OAUTH2 AZURE ====
  125. # https://github.com/wekan/wekan/wiki/Azure
  126. # 1) Register the application with Azure. Make sure you capture
  127. # the application ID as well as generate a secret key.
  128. # 2) Configure the environment variables. This differs slightly
  129. # by installation type, but make sure you have the following:
  130. #export OAUTH2_ENABLED=true
  131. # Use OAuth2 ADFS additional changes. Also needs OAUTH2_ENABLED=true setting.
  132. #export OAUTH2_ADFS_ENABLED=false
  133. # OAuth2 docs: https://github.com/wekan/wekan/wiki/OAuth2
  134. # OAuth2 login style: popup or redirect.
  135. #export OAUTH2_LOGIN_STYLE=redirect
  136. # Application GUID captured during app registration:
  137. #export OAUTH2_CLIENT_ID=xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx
  138. # Secret key generated during app registration:
  139. #export OAUTH2_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  140. #export OAUTH2_SERVER_URL=https://login.microsoftonline.com/
  141. #export OAUTH2_AUTH_ENDPOINT=/oauth2/v2.0/authorize
  142. #export OAUTH2_USERINFO_ENDPOINT=https://graph.microsoft.com/oidc/userinfo
  143. #export OAUTH2_TOKEN_ENDPOINT=/oauth2/v2.0/token
  144. # The claim name you want to map to the unique ID field:
  145. #export OAUTH2_ID_MAP=email
  146. # The claim name you want to map to the username field:
  147. #export OAUTH2_USERNAME_MAP=email
  148. # The claim name you want to map to the full name field:
  149. #export OAUTH2_FULLNAME_MAP=name
  150. # The claim name you want to map to the email field:
  151. #export OAUTH2_EMAIL_MAP=email
  152. #-----------------------------------------------------------------
  153. # ==== OAUTH2 KEYCLOAK ====
  154. # https://github.com/wekan/wekan/wiki/Keycloak <== MAPPING INFO, REQUIRED
  155. #export OAUTH2_ENABLED=true
  156. # OAuth2 login style: popup or redirect.
  157. #export OAUTH2_LOGIN_STYLE=redirect
  158. #export OAUTH2_CLIENT_ID=<Keycloak create Client ID>
  159. #export OAUTH2_SERVER_URL=<Keycloak server name>/auth
  160. #export OAUTH2_AUTH_ENDPOINT=/realms/<keycloak realm>/protocol/openid-connect/auth
  161. #export OAUTH2_USERINFO_ENDPOINT=/realms/<keycloak realm>/protocol/openid-connect/userinfo
  162. #export OAUTH2_TOKEN_ENDPOINT=/realms/<keycloak realm>/protocol/openid-connect/token
  163. #export OAUTH2_SECRET=<keycloak client secret>
  164. #-----------------------------------------------------------------
  165. # ==== OAUTH2 DOORKEEPER ====
  166. # OAuth2 docs: https://github.com/wekan/wekan/wiki/OAuth2
  167. # https://github.com/wekan/wekan/issues/1874
  168. # https://github.com/wekan/wekan/wiki/OAuth2
  169. # Enable the OAuth2 connection
  170. #export OAUTH2_ENABLED=true
  171. # OAuth2 login style: popup or redirect.
  172. #export OAUTH2_LOGIN_STYLE=redirect
  173. # OAuth2 Client ID.
  174. #export OAUTH2_CLIENT_ID=abcde12345
  175. # OAuth2 Secret.
  176. #export OAUTH2_SECRET=54321abcde
  177. # OAuth2 Server URL.
  178. #export OAUTH2_SERVER_URL=https://chat.example.com
  179. # OAuth2 Authorization Endpoint.
  180. #export OAUTH2_AUTH_ENDPOINT=/oauth/authorize
  181. # OAuth2 Userinfo Endpoint.
  182. #export OAUTH2_USERINFO_ENDPOINT=/oauth/userinfo
  183. # OAuth2 Token Endpoint.
  184. #export OAUTH2_TOKEN_ENDPOINT=/oauth/token
  185. # OAUTH2 ID Token Whitelist Fields.
  186. #export OAUTH2_ID_TOKEN_WHITELIST_FIELDS=[]
  187. # OAUTH2 Request Permissions.
  188. #export OAUTH2_REQUEST_PERMISSIONS='openid profile email'
  189. # OAuth2 ID Mapping
  190. #export OAUTH2_ID_MAP=
  191. # OAuth2 Username Mapping
  192. #export OAUTH2_USERNAME_MAP=
  193. # OAuth2 Fullname Mapping
  194. #export OAUTH2_FULLNAME_MAP=
  195. # OAuth2 Email Mapping
  196. #export OAUTH2_EMAIL_MAP=
  197. #---------------------------------------------
  198. # LDAP_ENABLE : Enable or not the connection by the LDAP
  199. # example : export LDAP_ENABLE=true
  200. #export LDAP_ENABLE=false
  201. # LDAP_PORT : The port of the LDAP server
  202. # example : export LDAP_PORT=389
  203. #export LDAP_PORT=389
  204. # LDAP_HOST : The host server for the LDAP server
  205. # example : export LDAP_HOST=localhost
  206. #export LDAP_HOST=
  207. # LDAP_BASEDN : The base DN for the LDAP Tree
  208. # example : export LDAP_BASEDN=ou=user,dc=example,dc=org
  209. #export LDAP_BASEDN=
  210. # LDAP_LOGIN_FALLBACK : Fallback on the default authentication method
  211. # example : export LDAP_LOGIN_FALLBACK=true
  212. #export LDAP_LOGIN_FALLBACK=false
  213. # LDAP_RECONNECT : Reconnect to the server if the connection is lost
  214. # example : export LDAP_RECONNECT=false
  215. #export LDAP_RECONNECT=true
  216. # LDAP_TIMEOUT : Overall timeout, in milliseconds
  217. # example : export LDAP_TIMEOUT=12345
  218. #export LDAP_TIMEOUT=10000
  219. # LDAP_IDLE_TIMEOUT : Specifies the timeout for idle LDAP connections in milliseconds
  220. # example : export LDAP_IDLE_TIMEOUT=12345
  221. #export LDAP_IDLE_TIMEOUT=10000
  222. # LDAP_CONNECT_TIMEOUT : Connection timeout, in milliseconds
  223. # example : export LDAP_CONNECT_TIMEOUT=12345
  224. #export LDAP_CONNECT_TIMEOUT=10000
  225. # LDAP_AUTHENTIFICATION : If the LDAP needs a user account to search
  226. # example : export LDAP_AUTHENTIFICATION=true
  227. #export LDAP_AUTHENTIFICATION=false
  228. # LDAP_AUTHENTIFICATION_USERDN : The search user DN
  229. # example : export LDAP_AUTHENTIFICATION_USERDN=cn=admin,dc=example,dc=org
  230. #----------------------------------------------------------------------------
  231. # The search user DN - You need quotes when you have spaces in parameters
  232. # 2 examples:
  233. #export LDAP_AUTHENTIFICATION_USERDN="CN=ldap admin,CN=users,DC=domainmatter,DC=lan"
  234. #export LDAP_AUTHENTIFICATION_USERDN="CN=wekan_adm,OU=serviceaccounts,OU=admin,OU=prod,DC=mydomain,DC=com"
  235. #---------------------------------------------------------------------------
  236. # LDAP_AUTHENTIFICATION_PASSWORD : The password for the search user
  237. # example : AUTHENTIFICATION_PASSWORD=admin
  238. #export LDAP_AUTHENTIFICATION_PASSWORD=
  239. # LDAP_LOG_ENABLED : Enable logs for the module
  240. # example : export LDAP_LOG_ENABLED=true
  241. #export LDAP_LOG_ENABLED=false
  242. # LDAP_BACKGROUND_SYNC : If the sync of the users should be done in the background
  243. # example : export LDAP_BACKGROUND_SYNC=true
  244. #export LDAP_BACKGROUND_SYNC=false
  245. # LDAP_BACKGROUND_SYNC_INTERVAL : At which interval does the background task sync in milliseconds
  246. # At which interval does the background task sync in milliseconds.
  247. # Leave this unset, so it uses default, and does not crash.
  248. # https://github.com/wekan/wekan/issues/2354#issuecomment-515305722
  249. export LDAP_BACKGROUND_SYNC_INTERVAL=''
  250. # LDAP_BACKGROUND_SYNC_KEEP_EXISTANT_USERS_UPDATED :
  251. # example : export LDAP_BACKGROUND_SYNC_KEEP_EXISTANT_USERS_UPDATED=true
  252. #export LDAP_BACKGROUND_SYNC_KEEP_EXISTANT_USERS_UPDATED=false
  253. # LDAP_BACKGROUND_SYNC_IMPORT_NEW_USERS :
  254. # example : export LDAP_BACKGROUND_SYNC_IMPORT_NEW_USERS=true
  255. #export LDAP_BACKGROUND_SYNC_IMPORT_NEW_USERS=false
  256. # LDAP_ENCRYPTION : If using LDAPS
  257. # example : export LDAP_ENCRYPTION=ssl
  258. #export LDAP_ENCRYPTION=false
  259. # LDAP_CA_CERT : The certification for the LDAPS server. Certificate needs to be included in this docker-compose.yml file.
  260. # example : export LDAP_CA_CERT=-----BEGIN CERTIFICATE-----MIIE+zCCA+OgAwIBAgIkAhwR/6TVLmdRY6hHxvUFWc0+Enmu/Hu6cj+G2FIdAgIC...-----END CERTIFICATE-----
  261. #export LDAP_CA_CERT=
  262. # LDAP_REJECT_UNAUTHORIZED : Reject Unauthorized Certificate
  263. # example : export LDAP_REJECT_UNAUTHORIZED=true
  264. #export LDAP_REJECT_UNAUTHORIZED=false
  265. # Option to login to the LDAP server with the user's own username and password, instead of an administrator key. Default: false (use administrator key).
  266. #export LDAP_USER_AUTHENTICATION=true
  267. # Which field is used to find the user for the user authentication. Default: uid.
  268. #export LDAP_USER_AUTHENTICATION_FIELD=uid
  269. # LDAP_USER_SEARCH_FILTER : Optional extra LDAP filters. Don't forget the outmost enclosing parentheses if needed
  270. # example : export LDAP_USER_SEARCH_FILTER=
  271. #export LDAP_USER_SEARCH_FILTER=
  272. # LDAP_USER_SEARCH_SCOPE : base (search only in the provided DN), one (search only in the provided DN and one level deep), or sub (search the whole subtree)
  273. # example : export LDAP_USER_SEARCH_SCOPE=one
  274. #export LDAP_USER_SEARCH_SCOPE=
  275. # LDAP_USER_SEARCH_FIELD : Which field is used to find the user
  276. # example : export LDAP_USER_SEARCH_FIELD=uid
  277. #export LDAP_USER_SEARCH_FIELD=
  278. # LDAP_SEARCH_PAGE_SIZE : Used for pagination (0=unlimited)
  279. # example : export LDAP_SEARCH_PAGE_SIZE=12345
  280. #export LDAP_SEARCH_PAGE_SIZE=0
  281. # LDAP_SEARCH_SIZE_LIMIT : The limit number of entries (0=unlimited)
  282. # example : export LDAP_SEARCH_SIZE_LIMIT=12345
  283. #export LDAP_SEARCH_SIZE_LIMIT=0
  284. # LDAP_GROUP_FILTER_ENABLE : Enable group filtering
  285. # example : export LDAP_GROUP_FILTER_ENABLE=true
  286. #export LDAP_GROUP_FILTER_ENABLE=false
  287. # LDAP_GROUP_FILTER_OBJECTCLASS : The object class for filtering
  288. # example : export LDAP_GROUP_FILTER_OBJECTCLASS=group
  289. #export LDAP_GROUP_FILTER_OBJECTCLASS=
  290. # LDAP_GROUP_FILTER_GROUP_ID_ATTRIBUTE :
  291. # example :
  292. #export LDAP_GROUP_FILTER_GROUP_ID_ATTRIBUTE=
  293. # LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE :
  294. # example :
  295. #export LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE=
  296. # LDAP_GROUP_FILTER_GROUP_MEMBER_FORMAT :
  297. # example :
  298. #export LDAP_GROUP_FILTER_GROUP_MEMBER_FORMAT=
  299. # LDAP_GROUP_FILTER_GROUP_NAME :
  300. # example :
  301. #export LDAP_GROUP_FILTER_GROUP_NAME=
  302. # LDAP_UNIQUE_IDENTIFIER_FIELD : This field is sometimes class GUID (Globally Unique Identifier)
  303. # example : export LDAP_UNIQUE_IDENTIFIER_FIELD=guid
  304. #export LDAP_UNIQUE_IDENTIFIER_FIELD=
  305. # LDAP_UTF8_NAMES_SLUGIFY : Convert the username to utf8
  306. # example : export LDAP_UTF8_NAMES_SLUGIFY=false
  307. #export LDAP_UTF8_NAMES_SLUGIFY=true
  308. # LDAP_USERNAME_FIELD : Which field contains the ldap username
  309. # example : export LDAP_USERNAME_FIELD=username
  310. #export LDAP_USERNAME_FIELD=
  311. # LDAP_FULLNAME_FIELD : Which field contains the ldap fullname
  312. # example : export LDAP_FULLNAME_FIELD=fullname
  313. #export LDAP_FULLNAME_FIELD=
  314. # LDAP_MERGE_EXISTING_USERS :
  315. # example : export LDAP_MERGE_EXISTING_USERS=true
  316. #export LDAP_MERGE_EXISTING_USERS=false
  317. # LDAP_EMAIL_MATCH_ENABLE : allow existing account matching by e-mail address when username does not match
  318. # example: LDAP_EMAIL_MATCH_ENABLE=true
  319. #export LDAP_EMAIL_MATCH_ENABLE=false
  320. # LDAP_EMAIL_MATCH_REQUIRE : require existing account matching by e-mail address when username does match
  321. # example: LDAP_EMAIL_MATCH_REQUIRE=true
  322. #export LDAP_EMAIL_MATCH_REQUIRE=false
  323. # LDAP_EMAIL_MATCH_VERIFIED : require existing account email address to be verified for matching
  324. # example: LDAP_EMAIL_MATCH_VERIFIED=true
  325. #export LDAP_EMAIL_MATCH_VERIFIED=false
  326. # LDAP_EMAIL_FIELD : which field contains the LDAP e-mail address
  327. # example: LDAP_EMAIL_FIELD=mail
  328. #export LDAP_EMAIL_FIELD=
  329. # LDAP_SYNC_USER_DATA :
  330. # example : export LDAP_SYNC_USER_DATA=true
  331. #export LDAP_SYNC_USER_DATA=false
  332. # LDAP_SYNC_USER_DATA_FIELDMAP :
  333. # example : export LDAP_SYNC_USER_DATA_FIELDMAP={"cn":"name", "mail":"email"}
  334. #export LDAP_SYNC_USER_DATA_FIELDMAP=
  335. # LDAP_SYNC_GROUP_ROLES :
  336. # example :
  337. #export LDAP_SYNC_GROUP_ROLES=
  338. # LDAP_DEFAULT_DOMAIN : The default domain of the ldap it is used to create email if the field is not map correctly with the LDAP_SYNC_USER_DATA_FIELDMAP
  339. # example :
  340. #export LDAP_DEFAULT_DOMAIN=
  341. # Enable/Disable syncing of admin status based on ldap groups:
  342. #export LDAP_SYNC_ADMIN_STATUS=true
  343. # Comma separated list of admin group names to sync.
  344. #export LDAP_SYNC_ADMIN_GROUPS=group1,group2
  345. #---------------------------------------------------------------------
  346. # Login to LDAP automatically with HTTP header.
  347. # In below example for siteminder, at right side of = is header name.
  348. #export HEADER_LOGIN_ID=HEADERUID
  349. #export HEADER_LOGIN_FIRSTNAME=HEADERFIRSTNAME
  350. #export HEADER_LOGIN_LASTNAME=HEADERLASTNAME
  351. #export HEADER_LOGIN_EMAIL=HEADEREMAILADDRESS
  352. #---------------------------------------------------------------------
  353. # LOGOUT_WITH_TIMER : Enables or not the option logout with timer
  354. # example : LOGOUT_WITH_TIMER=true
  355. #export LOGOUT_WITH_TIMER=
  356. # LOGOUT_IN : The number of days
  357. # example : LOGOUT_IN=1
  358. #export LOGOUT_IN=
  359. #export LOGOUT_ON_HOURS=
  360. # LOGOUT_ON_MINUTES : The number of minutes
  361. # example : LOGOUT_ON_MINUTES=55
  362. #export LOGOUT_ON_MINUTES=
  363. #---------------------------------------------------------------------
  364. # PASSWORD_LOGIN_ENABLED : Enable or not the password login form.
  365. #export PASSWORD_LOGIN_ENABLED=true
  366. #---------------------------------------------------------------------
  367. #export CAS_ENABLED=true
  368. #export CAS_BASE_URL=https://cas.example.com/cas
  369. #export CAS_LOGIN_URL=https://cas.example.com/login
  370. #export CAS_VALIDATE_URL=https://cas.example.com/cas/p3/serviceValidate
  371. #---------------------------------------------------------------------
  372. #export SAML_ENABLED=true
  373. #export SAML_PROVIDER=
  374. #export SAML_ENTRYPOINT=
  375. #export SAML_ISSUER=
  376. #export SAML_CERT=
  377. #export SAML_IDPSLO_REDIRECTURL=
  378. #export SAML_PRIVATE_KEYFILE=
  379. #export SAML_PUBLIC_CERTFILE=
  380. #export SAML_IDENTIFIER_FORMAT=
  381. #export SAML_LOCAL_PROFILE_MATCH_ATTRIBUTE=
  382. #export SAML_ATTRIBUTES=
  383. #---------------------------------------------------------------------
  384. # Wait spinner to use
  385. #export WAIT_SPINNER=Bounce
  386. #---------------------------------------------------------------------
  387. node main.js & >> ~/repos/wekan.log
  388. cd ~/repos
  389. #done