Skip to content

Commit d74ad59

Browse files
Merge branch 'main' into update_content
2 parents ac449c5 + 5de01e2 commit d74ad59

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

docker/root/etc/templates/sshd_config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ AddressFamily any
55
ListenAddress 0.0.0.0
66
ListenAddress ::
77

8+
MaxStartups ${SSH_MAX_STARTUPS}
9+
MaxSessions ${SSH_MAX_SESSIONS}
10+
811
LogLevel INFO
912

1013
HostKey /data/ssh/ssh_host_ed25519_key

options/locale/locale_ja-JP.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,6 +1315,10 @@ pulls.manually_merged_as=プルリクエストは <a rel="nofollow" class="ui sh
13151315
pulls.is_closed=プルリクエストはクローズされています。
13161316
pulls.has_merged=プルリクエストはマージされています。
13171317
pulls.title_wip_desc=`誤ってマージされないようにするには、<a href="#">タイトルの頭に <strong>%s</strong> を付けます</a>。`
1318+
pulls.cannot_merge_work_in_progress=このプルリクエストは作業中(WIP)としてマーキングされています。
1319+
pulls.still_in_progress=まだ作業中?
1320+
pulls.add_prefix=先頭に <strong>%s</strong> を追加
1321+
pulls.remove_prefix=先頭の <strong>%s</strong> を除去
13181322
pulls.data_broken=このプルリクエストは、フォークの情報が見つからないため壊れています。
13191323
pulls.files_conflicted=このプルリクエストは、ターゲットブランチと競合する変更を含んでいます。
13201324
pulls.is_checking=マージのコンフリクトを確認中です。 少し待ってからもう一度実行してください。
@@ -1975,6 +1979,10 @@ branch.restore=ブランチ '%s' の復元
19751979
branch.download=ブランチ '%s' をダウンロード
19761980
branch.included_desc=このブランチはデフォルトブランチに含まれています
19771981
branch.included=埋没
1982+
branch.create_new_branch=このブランチをもとに作成します:
1983+
branch.confirm_create_branch=ブランチを作成
1984+
branch.new_branch=新しいブランチの作成
1985+
branch.new_branch_from='%s' から新しいブランチを作成
19781986

19791987
tag.create_tag=タグ <strong>%s</strong> を作成
19801988
tag.create_success=タグ '%s' が作成されました。

routers/api/v1/api.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,7 @@ func Routes() *web.Route {
557557
Gclifetime: setting.SessionConfig.Gclifetime,
558558
Maxlifetime: setting.SessionConfig.Maxlifetime,
559559
Secure: setting.SessionConfig.Secure,
560+
SameSite: setting.SessionConfig.SameSite,
560561
Domain: setting.SessionConfig.Domain,
561562
}))
562563
m.Use(securityHeaders())

routers/routes/install.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ func InstallRoutes() *web.Route {
9494
Gclifetime: setting.SessionConfig.Gclifetime,
9595
Maxlifetime: setting.SessionConfig.Maxlifetime,
9696
Secure: setting.SessionConfig.Secure,
97+
SameSite: setting.SessionConfig.SameSite,
9798
Domain: setting.SessionConfig.Domain,
9899
}))
99100

routers/routes/web.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ func WebRoutes() *web.Route {
161161
Gclifetime: setting.SessionConfig.Gclifetime,
162162
Maxlifetime: setting.SessionConfig.Maxlifetime,
163163
Secure: setting.SessionConfig.Secure,
164+
SameSite: setting.SessionConfig.SameSite,
164165
Domain: setting.SessionConfig.Domain,
165166
}))
166167

0 commit comments

Comments
 (0)