You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

install.tmpl 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. {{template "base/head" .}}
  2. <div class="install">
  3. <div class="ui middle very relaxed page grid">
  4. <div class="sixteen wide center aligned centered column">
  5. <h3 class="ui top attached header">
  6. {{.i18n.Tr "install.title"}}
  7. </h3>
  8. <div class="ui attached segment">
  9. {{template "base/alert" .}}
  10. <p>{{.i18n.Tr "install.docker_helper" "https://docs.gitea.io/en-us/install-with-docker/" | Safe}}</p>
  11. <form class="ui form" action="{{AppSubUrl}}/install" method="post">
  12. <!-- Database Settings -->
  13. <h4 class="ui dividing header">{{.i18n.Tr "install.db_title"}}</h4>
  14. <p>{{.i18n.Tr "install.requite_db_desc"}}</p>
  15. <div class="inline required field {{if .Err_DbType}}error{{end}}">
  16. <label>{{.i18n.Tr "install.db_type"}}</label>
  17. <div class="ui selection database type dropdown">
  18. <input type="hidden" id="db_type" name="db_type" value="{{.CurDbOption}}">
  19. <div class="text">{{.CurDbOption}}</div>
  20. <i class="dropdown icon"></i>
  21. <div class="menu">
  22. {{range .DbOptions}}
  23. <div class="item" data-value="{{.}}">{{.}}</div>
  24. {{end}}
  25. </div>
  26. </div>
  27. </div>
  28. <div id="sql_settings" class="{{if or (eq .CurDbOption "SQLite3")}}hide{{end}}">
  29. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  30. <label for="db_host">{{.i18n.Tr "install.host"}}</label>
  31. <input id="db_host" name="db_host" value="{{.db_host}}">
  32. </div>
  33. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  34. <label for="db_user">{{.i18n.Tr "install.user"}}</label>
  35. <input id="db_user" name="db_user" value="{{.db_user}}">
  36. </div>
  37. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  38. <label for="db_passwd">{{.i18n.Tr "install.password"}}</label>
  39. <input id="db_passwd" name="db_passwd" type="password" value="{{.db_passwd}}">
  40. </div>
  41. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  42. <label for="db_name">{{.i18n.Tr "install.db_name"}}</label>
  43. <input id="db_name" name="db_name" value="{{.db_name}}">
  44. <span class="help">{{.i18n.Tr "install.db_helper"}}</span>
  45. </div>
  46. </div>
  47. <div id="pgsql_settings" class="{{if not (eq .CurDbOption "PostgreSQL")}}hide{{end}}">
  48. <div class="inline required field">
  49. <label>{{.i18n.Tr "install.ssl_mode"}}</label>
  50. <div class="ui selection database type dropdown">
  51. <input type="hidden" name="ssl_mode" value="{{if .ssl_mode}}{{.ssl_mode}}{{else}}disable{{end}}">
  52. <div class="default text">disable</div>
  53. <i class="dropdown icon"></i>
  54. <div class="menu">
  55. <div class="item" data-value="disable">Disable</div>
  56. <div class="item" data-value="require">Require</div>
  57. <div class="item" data-value="verify-full">Verify Full</div>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="inline field {{if .Err_DbSetting}}error{{end}}">
  62. <label for="db_schema">{{.i18n.Tr "install.db_schema"}}</label>
  63. <input id="db_schema" name="db_schema" value="{{.db_schema}}">
  64. <span class="help">{{.i18n.Tr "install.db_schema_helper"}}</span>
  65. </div>
  66. </div>
  67. <div id="mysql_settings" class="{{if not (eq .CurDbOption "MySQL")}}hide{{end}}">
  68. <div class="inline required field">
  69. <label>{{.i18n.Tr "install.charset"}}</label>
  70. <div class="ui selection database type dropdown">
  71. <input type="hidden" name="charset" value="{{if .charset}}{{.charset}}{{else}}utf8mb4{{end}}">
  72. <div class="default text">utf8mb4</div>
  73. <i class="dropdown icon"></i>
  74. <div class="menu">
  75. <div class="item" data-value="utf8mb4">utf8mb4</div>
  76. <div class="item" data-value="utf8">utf8</div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <div id="sqlite_settings" class="{{if not (or (eq .CurDbOption "SQLite3") (eq .CurDbOption "TiDB"))}}hide{{end}}">
  82. <div class="inline required field {{if or .Err_DbPath .Err_DbSetting}}error{{end}}">
  83. <label for="db_path">{{.i18n.Tr "install.path"}}</label>
  84. <input id="db_path" name="db_path" value="{{.db_path}}">
  85. <span class="help">{{.i18n.Tr "install.sqlite_helper" | Safe}}</span>
  86. </div>
  87. </div>
  88. <!-- General Settings -->
  89. <h4 class="ui dividing header">{{.i18n.Tr "install.general_title"}}</h4>
  90. <div class="inline required field {{if .Err_AppName}}error{{end}}">
  91. <label for="app_name">{{.i18n.Tr "install.app_name"}}</label>
  92. <input id="app_name" name="app_name" value="{{.app_name}}" required>
  93. <span class="help">{{.i18n.Tr "install.app_name_helper"}}</span>
  94. </div>
  95. <div class="inline required field {{if .Err_RepoRootPath}}error{{end}}">
  96. <label for="repo_root_path">{{.i18n.Tr "install.repo_path"}}</label>
  97. <input id="repo_root_path" name="repo_root_path" value="{{.repo_root_path}}" required>
  98. <span class="help">{{.i18n.Tr "install.repo_path_helper"}}</span>
  99. </div>
  100. <div class="inline field {{if .Err_LFSRootPath}}error{{end}}">
  101. <label for="lfs_root_path">{{.i18n.Tr "install.lfs_path"}}</label>
  102. <input id="lfs_root_path" name="lfs_root_path" value="{{.lfs_root_path}}">
  103. <span class="help">{{.i18n.Tr "install.lfs_path_helper"}}</span>
  104. </div>
  105. <div class="inline required field {{if .Err_RunUser}}error{{end}}">
  106. <label for="run_user">{{.i18n.Tr "install.run_user"}}</label>
  107. <input id="run_user" name="run_user" value="{{.run_user}}" required>
  108. <span class="help">{{.i18n.Tr "install.run_user_helper"}}</span>
  109. </div>
  110. <div class="inline required field">
  111. <label for="domain">{{.i18n.Tr "install.domain"}}</label>
  112. <input id="domain" name="domain" value="{{.domain}}" placeholder="e.g. try.gitea.io" required>
  113. <span class="help">{{.i18n.Tr "install.domain_helper"}}</span>
  114. </div>
  115. <div class="inline field">
  116. <label for="ssh_port">{{.i18n.Tr "install.ssh_port"}}</label>
  117. <input id="ssh_port" name="ssh_port" value="{{.ssh_port}}">
  118. <span class="help">{{.i18n.Tr "install.ssh_port_helper"}}</span>
  119. </div>
  120. <div class="inline required field">
  121. <label for="http_port">{{.i18n.Tr "install.http_port"}}</label>
  122. <input id="http_port" name="http_port" value="{{.http_port}}" required>
  123. <span class="help">{{.i18n.Tr "install.http_port_helper"}}</span>
  124. </div>
  125. <div class="inline required field">
  126. <label for="app_url">{{.i18n.Tr "install.app_url"}}</label>
  127. <input id="app_url" name="app_url" value="{{.app_url}}" placeholder="e.g. https://try.gitea.io" required>
  128. <span class="help">{{.i18n.Tr "install.app_url_helper"}}</span>
  129. </div>
  130. <div class="inline required field">
  131. <label for="log_root_path">{{.i18n.Tr "install.log_root_path"}}</label>
  132. <input id="log_root_path" name="log_root_path" value="{{.log_root_path}}" placeholder="log" required>
  133. <span class="help">{{.i18n.Tr "install.log_root_path_helper"}}</span>
  134. </div>
  135. <!-- Optional Settings -->
  136. <h4 class="ui dividing header">{{.i18n.Tr "install.optional_title"}}</h4>
  137. <!-- Email -->
  138. <div class="ui accordion optional field">
  139. <div class="title {{if .Err_SMTP}}text red{{end}}">
  140. <i class="icon dropdown"></i>
  141. {{.i18n.Tr "install.email_title"}}
  142. </div>
  143. <div class="content">
  144. <div class="inline field">
  145. <label for="smtp_host">{{.i18n.Tr "install.smtp_host"}}</label>
  146. <input id="smtp_host" name="smtp_host" value="{{.smtp_host}}">
  147. </div>
  148. <div class="inline field {{if .Err_SMTPFrom}}error{{end}}">
  149. <label for="smtp_from">{{.i18n.Tr "install.smtp_from"}}</label>
  150. <input id="smtp_from" name="smtp_from" value="{{.smtp_from}}">
  151. <span class="help">{{.i18n.Tr "install.smtp_from_helper"}}</span>
  152. </div>
  153. <div class="inline field {{if .Err_SMTPUser}}error{{end}}">
  154. <label for="smtp_user">{{.i18n.Tr "install.mailer_user"}}</label>
  155. <input id="smtp_user" name="smtp_user" value="{{.smtp_user}}">
  156. </div>
  157. <div class="inline field">
  158. <label for="smtp_passwd">{{.i18n.Tr "install.mailer_password"}}</label>
  159. <input id="smtp_passwd" name="smtp_passwd" type="password" value="{{.smtp_passwd}}">
  160. </div>
  161. <div class="inline field">
  162. <div class="ui checkbox">
  163. <label><strong>{{.i18n.Tr "install.register_confirm"}}</strong></label>
  164. <input name="register_confirm" type="checkbox" {{if .register_confirm}}checked{{end}}>
  165. </div>
  166. </div>
  167. <div class="inline field">
  168. <div class="ui checkbox">
  169. <label><strong>{{.i18n.Tr "install.mail_notify"}}</strong></label>
  170. <input name="mail_notify" type="checkbox" {{if .mail_notify}}checked{{end}}>
  171. </div>
  172. </div>
  173. </div>
  174. </div>
  175. <!-- Server and other services -->
  176. <div class="ui accordion optional field">
  177. <div class="title {{if .Err_Services}}text red{{end}}">
  178. <i class="icon dropdown"></i>
  179. {{.i18n.Tr "install.server_service_title"}}
  180. </div>
  181. <div class="content">
  182. <div class="inline field">
  183. <div class="ui checkbox" id="offline-mode">
  184. <label class="poping up" data-content="{{.i18n.Tr "install.offline_mode_popup"}}"><strong>{{.i18n.Tr "install.offline_mode"}}</strong></label>
  185. <input name="offline_mode" type="checkbox" {{if .offline_mode}}checked{{end}}>
  186. </div>
  187. </div>
  188. <div class="inline field">
  189. <div class="ui checkbox" id="disable-gravatar">
  190. <label class="poping up" data-content="{{.i18n.Tr "install.disable_gravatar_popup"}}"><strong>{{.i18n.Tr "install.disable_gravatar"}}</strong></label>
  191. <input name="disable_gravatar" type="checkbox" {{if .disable_gravatar}}checked{{end}}>
  192. </div>
  193. </div>
  194. <div class="inline field">
  195. <div class="ui checkbox" id="federated-avatar-lookup">
  196. <label class="poping up" data-content="{{.i18n.Tr "install.federated_avatar_lookup_popup"}}"><strong>{{.i18n.Tr "install.federated_avatar_lookup"}}</strong></label>
  197. <input name="enable_federated_avatar" type="checkbox" {{if .enable_federated_avatar}}checked{{end}}>
  198. </div>
  199. </div>
  200. <div class="inline field">
  201. <div class="ui checkbox" id="enable-openid-signin">
  202. <label class="poping up" data-content="{{.i18n.Tr "install.openid_signin_popup"}}"><strong>{{.i18n.Tr "install.openid_signin"}}</strong></label>
  203. <input name="enable_open_id_sign_in" type="checkbox" {{if .enable_open_id_sign_in}}checked{{end}}>
  204. </div>
  205. </div>
  206. <div class="inline field">
  207. <div class="ui checkbox" id="disable-registration">
  208. <label class="poping up" data-content="{{.i18n.Tr "install.disable_registration_popup"}}"><strong>{{.i18n.Tr "install.disable_registration"}}</strong></label>
  209. <input name="disable_registration" type="checkbox" {{if .disable_registration}}checked{{end}}>
  210. </div>
  211. </div>
  212. <div class="inline field">
  213. <div class="ui checkbox" id="allow-only-external-registration">
  214. <label class="poping up" data-content="{{.i18n.Tr "install.allow_only_external_registration_popup"}}"><strong>{{.i18n.Tr "install.allow_only_external_registration_popup"}}</strong></label>
  215. <input name="allow_only_external_registration" type="checkbox" {{if .allow_only_external_registration}}checked{{end}}>
  216. </div>
  217. </div>
  218. <div class="inline field">
  219. <div class="ui checkbox" id="enable-openid-signup">
  220. <label class="poping up" data-content="{{.i18n.Tr "install.openid_signup_popup"}}"><strong>{{.i18n.Tr "install.openid_signup"}}</strong></label>
  221. <input name="enable_open_id_sign_up" type="checkbox" {{if .enable_open_id_sign_up}}checked{{end}}>
  222. </div>
  223. </div>
  224. <div class="inline field">
  225. <div class="ui checkbox" id="enable-captcha">
  226. <label class="poping up" data-content="{{.i18n.Tr "install.enable_captcha_popup"}}"><strong>{{.i18n.Tr "install.enable_captcha"}}</strong></label>
  227. <input name="enable_captcha" type="checkbox" {{if .enable_captcha}}checked{{end}}>
  228. </div>
  229. </div>
  230. <div class="inline field">
  231. <div class="ui checkbox">
  232. <label class="poping up" data-content="{{.i18n.Tr "install.require_sign_in_view_popup"}}"><strong>{{.i18n.Tr "install.require_sign_in_view"}}</strong></label>
  233. <input name="require_sign_in_view" type="checkbox" {{if .require_sign_in_view}}checked{{end}}>
  234. </div>
  235. </div>
  236. <div class="inline field">
  237. <div class="ui checkbox">
  238. <label class="poping up" data-content="{{.i18n.Tr "install.default_keep_email_private_popup"}}"><strong>{{.i18n.Tr "install.default_keep_email_private"}}</strong></label>
  239. <input name="default_keep_email_private" type="checkbox" {{if .default_keep_email_private}}checked{{end}}>
  240. </div>
  241. </div>
  242. <div class="inline field">
  243. <div class="ui checkbox">
  244. <label class="poping up" data-content="{{.i18n.Tr "install.default_allow_create_organization_popup"}}"><strong>{{.i18n.Tr "install.default_allow_create_organization"}}</strong></label>
  245. <input name="default_allow_create_organization" type="checkbox" {{if .default_allow_create_organization}}checked{{end}}>
  246. </div>
  247. </div>
  248. <div class="inline field">
  249. <div class="ui checkbox">
  250. <label class="poping up" data-content="{{.i18n.Tr "install.default_enable_timetracking_popup"}}"><strong>{{.i18n.Tr "install.default_enable_timetracking"}}</strong></label>
  251. <input name="default_enable_timetracking" type="checkbox" {{if .default_enable_timetracking}}checked{{end}}>
  252. </div>
  253. </div>
  254. <div class="inline field">
  255. <label for="no_reply_address">{{.i18n.Tr "install.no_reply_address"}}</label>
  256. <input id="_no_reply_address" name="no_reply_address" value="{{.no_reply_address}}">
  257. <span class="help">{{.i18n.Tr "install.no_reply_address_helper"}}</span>
  258. </div>
  259. </div>
  260. </div>
  261. <!-- Admin -->
  262. <div class="ui accordion optional field">
  263. <div class="title {{if .Err_Admin}}text red{{end}}">
  264. <i class="icon dropdown"></i>
  265. {{.i18n.Tr "install.admin_title"}}
  266. </div>
  267. <div class="content">
  268. <p class="center">{{.i18n.Tr "install.admin_setting_desc"}}</p>
  269. <div class="inline field {{if .Err_AdminName}}error{{end}}">
  270. <label for="admin_name">{{.i18n.Tr "install.admin_name"}}</label>
  271. <input id="admin_name" name="admin_name" value="{{.admin_name}}">
  272. </div>
  273. <div class="inline field {{if .Err_AdminPasswd}}error{{end}}">
  274. <label for="admin_passwd">{{.i18n.Tr "install.admin_password"}}</label>
  275. <input id="admin_passwd" name="admin_passwd" type="password" value="{{.admin_passwd}}">
  276. </div>
  277. <div class="inline field {{if .Err_AdminPasswd}}error{{end}}">
  278. <label for="admin_confirm_passwd">{{.i18n.Tr "install.confirm_password"}}</label>
  279. <input id="admin_confirm_passwd" name="admin_confirm_passwd" type="password" value="{{.admin_confirm_passwd}}">
  280. </div>
  281. <div class="inline field {{if .Err_AdminEmail}}error{{end}}">
  282. <label for="admin_email">{{.i18n.Tr "install.admin_email"}}</label>
  283. <input id="admin_email" name="admin_email" type="email" value="{{.admin_email}}">
  284. </div>
  285. </div>
  286. </div>
  287. <div class="ui divider"></div>
  288. <div class="inline field">
  289. <label></label>
  290. <button class="ui primary button">{{.i18n.Tr "install.install_btn_confirm"}}</button>
  291. </div>
  292. </form>
  293. </div>
  294. </div>
  295. </div>
  296. </div>
  297. {{template "base/footer" .}}