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
5
5
ListenAddress 0.0.0.0
6
6
ListenAddress ::
7
7
8
+ MaxStartups ${SSH_MAX_STARTUPS}
9
+ MaxSessions ${SSH_MAX_SESSIONS}
10
+
8
11
LogLevel INFO
9
12
10
13
HostKey /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
1315
1315
pulls.is_closed =プルリクエストはクローズされています。
1316
1316
pulls.has_merged =プルリクエストはマージされています。
1317
1317
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> を除去
1318
1322
pulls.data_broken =このプルリクエストは、フォークの情報が見つからないため壊れています。
1319
1323
pulls.files_conflicted =このプルリクエストは、ターゲットブランチと競合する変更を含んでいます。
1320
1324
pulls.is_checking =マージのコンフリクトを確認中です。 少し待ってからもう一度実行してください。
@@ -1975,6 +1979,10 @@ branch.restore=ブランチ '%s' の復元
1975
1979
branch.download =ブランチ ' %s' をダウンロード
1976
1980
branch.included_desc =このブランチはデフォルトブランチに含まれています
1977
1981
branch.included =埋没
1982
+ branch.create_new_branch =このブランチをもとに作成します:
1983
+ branch.confirm_create_branch =ブランチを作成
1984
+ branch.new_branch =新しいブランチの作成
1985
+ branch.new_branch_from =' %s' から新しいブランチを作成
1978
1986
1979
1987
tag.create_tag =タグ <strong>%s</strong> を作成
1980
1988
tag.create_success =タグ ' %s' が作成されました。
Original file line number Diff line number Diff line change @@ -557,6 +557,7 @@ func Routes() *web.Route {
557
557
Gclifetime : setting .SessionConfig .Gclifetime ,
558
558
Maxlifetime : setting .SessionConfig .Maxlifetime ,
559
559
Secure : setting .SessionConfig .Secure ,
560
+ SameSite : setting .SessionConfig .SameSite ,
560
561
Domain : setting .SessionConfig .Domain ,
561
562
}))
562
563
m .Use (securityHeaders ())
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ func InstallRoutes() *web.Route {
94
94
Gclifetime : setting .SessionConfig .Gclifetime ,
95
95
Maxlifetime : setting .SessionConfig .Maxlifetime ,
96
96
Secure : setting .SessionConfig .Secure ,
97
+ SameSite : setting .SessionConfig .SameSite ,
97
98
Domain : setting .SessionConfig .Domain ,
98
99
}))
99
100
Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ func WebRoutes() *web.Route {
161
161
Gclifetime : setting .SessionConfig .Gclifetime ,
162
162
Maxlifetime : setting .SessionConfig .Maxlifetime ,
163
163
Secure : setting .SessionConfig .Secure ,
164
+ SameSite : setting .SessionConfig .SameSite ,
164
165
Domain : setting .SessionConfig .Domain ,
165
166
}))
166
167
You can’t perform that action at this time.
0 commit comments