[Notice] Announcing the End of Demo Server [Read me]
docs: Update applicatoin-conf-desc.md for v1.4
@a59fd0bc27d20d78a51a8e5178dff4e2f8048476
--- docs/ko/application-conf-desc.md
+++ docs/ko/application-conf-desc.md
... | ... | @@ -31,7 +31,19 @@ |
31 | 31 |
- application.use.social.login.only = true |
32 | 32 |
- 지원 소셜로그인 제공자 설정 가능 |
33 | 33 |
- application.social.login.support = "github, google" |
34 |
- |
|
34 |
+- 프로젝트 생성 시 기본 선택되는 있는 공개 범위 지정 |
|
35 |
+ - project.default.scope.when.create = "public" |
|
36 |
+- 공개 프로젝트 목록을 숨기는 기능 |
|
37 |
+ - application.hide.project.listing = false |
|
38 |
+- Github Enterprise 연동시 추가 옵션 |
|
39 |
+ - 로그인 버튼 이름 변경 |
|
40 |
+ - application.social.login.github.name = "Github Enterprise" |
|
41 |
+- 소셜 로그인시 사용자 이름 동기화 |
|
42 |
+ - application.use.social.login.name.sync = false |
|
43 |
+- 외부로 메일 전송을 제한하기 위한 이메일 발송 가능 목록 제한 |
|
44 |
+ - application.allowed.sending.mail.domains = "your-company.com, inner-email.com" |
|
45 |
+- LDAP 로그인 지원 |
|
46 |
+ - application.use.ldap.login.supoort = false |
|
35 | 47 |
|
36 | 48 |
application.conf 기본 설정 |
37 | 49 |
----- |
... | ... | @@ -75,7 +87,7 @@ |
75 | 87 |
# The secret key is used to secure cryptographics functions. |
76 | 88 |
# If you deploy your application to several instances be sure to use the same key! |
77 | 89 |
# |
78 |
-# If you want to reset admin account, set this value to default. |
|
90 |
+# If you want to reset admin account, set this value to default. |
|
79 | 91 |
# Default: "VA2v:_I=h9>?FYOH:@ZhW]01P<mWZAKlQ>kk>Bo`mdCiA>pDw64FcBuZdDh<47Ew" |
80 | 92 |
application.secret="VA2v:_I=h9>?FYOH:@ZhW]01P<mWZAKlQ>kk>Bo`mdCiA>pDw64FcBuZdDh<47Ew" |
81 | 93 |
|
... | ... | @@ -292,6 +304,9 @@ |
292 | 304 |
# Display private repositories in the list |
293 | 305 |
application.displayPrivateRepositories = false |
294 | 306 |
|
307 |
+# choice: "public" or "private" |
|
308 |
+# default: "public" |
|
309 |
+project.default.scope.when.create = "public" |
|
295 | 310 |
|
296 | 311 |
# Github Migration |
297 | 312 |
# ~~~~~~~~~~~~~~~~~ |
... | ... | @@ -309,14 +324,48 @@ |
309 | 324 |
# Social Login Support |
310 | 325 |
# ~~~~~~~~~~~~~~~~~~~~ |
311 | 326 |
# Social login settings for Yona |
312 |
-# Detail settings are described at conf/play-authenticate/mine.conf |
|
327 |
+# Detail settings are described at social-login.conf |
|
313 | 328 |
|
314 | 329 |
# Prevent using Yona's own login system |
315 |
-application.use.social.login.only = true |
|
330 |
+application.use.social.login.only = false |
|
331 |
+ |
|
332 |
+# If true, update local user name with social login account name |
|
333 |
+application.use.social.login.name.sync = false |
|
316 | 334 |
|
317 | 335 |
# Allowed OAuth social login provider |
318 | 336 |
# choice: github, google |
319 | 337 |
application.social.login.support = "github, google" |
320 | 338 |
|
321 |
-include "social-login.conf" |
|
339 |
+# ALLOWED_SENDING_MAIL_DOMAINS |
|
340 |
+# Default: "" <= Allow all |
|
341 |
+application.allowed.sending.mail.domains = "" |
|
342 |
+ |
|
343 |
+# LDAP Login Support |
|
344 |
+# ~~~~~~~~~~~~~~~~~ |
|
345 |
+# |
|
346 |
+application.use.ldap.login.supoort = false |
|
347 |
+ldap { |
|
348 |
+ host = "ldap.forumsys.com" |
|
349 |
+ # default: ldap.port=389, ldaps.port=636 |
|
350 |
+ port = 389 |
|
351 |
+ # protocol: ldap or ldaps. If you want to use SSL/TLS, use 'ldaps' |
|
352 |
+ protocol = "ldap" |
|
353 |
+ baseDN = "ou=scientists,dc=example,dc=com" |
|
354 |
+ # If your ldap service's distinguishedName is 'CN=username,OU=user,DC=abc,DC=com', postfix is 'OU=xxx,DC=abc,DC=com' |
|
355 |
+ distinguishedNamePostfix = "OU=user,DC=abc,DC=com" |
|
356 |
+} |
|
357 |
+ |
|
358 |
+# If you enable to use social login, set followings |
|
359 |
+play-easymail { |
|
360 |
+ from { |
|
361 |
+ # Mailing from address |
|
362 |
+ email="your@mail-adress.com" |
|
363 |
+ |
|
364 |
+ # Mailing name |
|
365 |
+ name="Yona Admin" |
|
366 |
+ |
|
367 |
+ # Seconds between sending mail through Akka (defaults to 1) |
|
368 |
+ # delay=1 |
|
369 |
+ } |
|
370 |
+} |
|
322 | 371 |
``` |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?