File tree Expand file tree Collapse file tree 5 files changed +14
-0
lines changed
docker/root/etc/templates Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ AddressFamily any
55ListenAddress 0.0.0.0
66ListenAddress ::
77
8+ MaxStartups ${SSH_MAX_STARTUPS}
9+ MaxSessions ${SSH_MAX_SESSIONS}
10+
811LogLevel INFO
912
1013HostKey /data/ssh/ssh_host_ed25519_key
Original file line number Diff line number Diff line change @@ -1315,6 +1315,10 @@ pulls.manually_merged_as=プルリクエストは <a rel="nofollow" class="ui sh
13151315pulls.is_closed =プルリクエストはクローズされています。
13161316pulls.has_merged =プルリクエストはマージされています。
13171317pulls.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> を除去
13181322pulls.data_broken =このプルリクエストは、フォークの情報が見つからないため壊れています。
13191323pulls.files_conflicted =このプルリクエストは、ターゲットブランチと競合する変更を含んでいます。
13201324pulls.is_checking =マージのコンフリクトを確認中です。 少し待ってからもう一度実行してください。
@@ -1975,6 +1979,10 @@ branch.restore=ブランチ '%s' の復元
19751979branch.download =ブランチ ' %s' をダウンロード
19761980branch.included_desc =このブランチはデフォルトブランチに含まれています
19771981branch.included =埋没
1982+ branch.create_new_branch =このブランチをもとに作成します:
1983+ branch.confirm_create_branch =ブランチを作成
1984+ branch.new_branch =新しいブランチの作成
1985+ branch.new_branch_from =' %s' から新しいブランチを作成
19781986
19791987tag.create_tag =タグ <strong>%s</strong> を作成
19801988tag.create_success =タグ ' %s' が作成されました。
Original file line number Diff line number Diff 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 ())
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments