From 772f238bc0e3d73d09ce4b58b7d0b98ff7445928 Mon Sep 17 00:00:00 2001 From: Alexey Shabalin Date: Mon, 5 Sep 2022 16:25:40 +0300 Subject: ALT config diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index f99c8044a0..b84d72bda1 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -41,14 +41,15 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; App name that shows in every page title -APP_NAME = ; Gitea: Git with a cup of tea +APP_NAME = Gitea: Git with a cup of tea ;; ;; RUN_USER will automatically detect the current user - but you can set it here change it if you run locally -RUN_USER = ; git +;; In ALT you should use system user with name that begins from underline symbol +RUN_USER = gitea ;; ;; Application run mode, affects performance and debugging: "dev" or "prod", default is "prod" ;; Mode "dev" makes Gitea easier to develop and debug, values other than "dev" are treated as "prod" which is for production use. -;RUN_MODE = prod +RUN_MODE = prod ;; ;; The working directory, see the comment of AppWorkPath above ;WORK_PATH = @@ -60,7 +61,7 @@ RUN_USER = ; git ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; The protocol the server listens on. One of 'http', 'https', 'http+unix', 'fcgi' or 'fcgi+unix'. Defaults to 'http' -;PROTOCOL = http +PROTOCOL = http ;; ;; Expect PROXY protocol headers on connections ;USE_PROXY_PROTOCOL = false @@ -75,10 +76,10 @@ RUN_USER = ; git ;PROXY_PROTOCOL_ACCEPT_UNKNOWN=false ;; ;; Set the domain for the server -;DOMAIN = localhost +DOMAIN = localhost ;; ;; Overwrite the automatically generated public URL. Necessary for proxies and docker. -;ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/ +ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/ ;; ;; when STATIC_URL_PREFIX is empty it will follow ROOT_URL ;STATIC_URL_PREFIX = @@ -86,10 +87,10 @@ RUN_USER = ; git ;; The address to listen on. Either a IPv4/IPv6 address or the path to a unix socket. ;; If PROTOCOL is set to `http+unix` or `fcgi+unix`, this should be the name of the Unix socket file to use. ;; Relative paths will be made absolute against the _`AppWorkPath`_. -;HTTP_ADDR = 0.0.0.0 +HTTP_ADDR = 127.0.0.1 ;; ;; The port to listen on. Leave empty when using a unix socket. -;HTTP_PORT = 3000 +HTTP_PORT = 3000 ;; ;; If REDIRECT_OTHER_PORT is true, and PROTOCOL is set to https an http server ;; will be started on PORT_TO_REDIRECT and it will redirect plain, non-secure http requests to the main @@ -270,12 +271,12 @@ RUN_USER = ; git ;; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys ;; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes ;; Paths are relative to CUSTOM_PATH -;CERT_FILE = https/cert.pem -;KEY_FILE = https/key.pem +;CERT_FILE = /etc/gitea/cert.pem +;KEY_FILE = /etc/gitea/key.pem ;; ;; Root directory containing templates and static files. ;; default is the path where Gitea is executed -;STATIC_ROOT_PATH = ; Will default to the built-in value _`StaticRootPath`_ +STATIC_ROOT_PATH = /var/lib/gitea ;; ;; Default path for App data ;APP_DATA_PATH = data ; relative paths will be made absolute with _`AppWorkPath`_ @@ -545,7 +546,7 @@ ENABLE = true ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Root path for the log files - defaults to %(GITEA_WORK_DIR)/log -;ROOT_PATH = +ROOT_PATH = /var/log/gitea ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Main Logger @@ -877,7 +878,7 @@ LEVEL = Info ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Root path for storing all repository data. By default, it is set to %(APP_DATA_PATH)s/gitea-repositories. ;; A relative path is interpreted as _`AppWorkPath`_/%(ROOT)s -;ROOT = +ROOT = /var/lib/gitea/repos ;; ;; The script type this server supports. Usually this is `bash`, but some users report that only `sh` is available. ;SCRIPT_TYPE = bash @@ -905,7 +906,7 @@ LEVEL = Info ;; ;; Preferred Licenses to place at the top of the List ;; The name here must match the filename in options/license or custom/options/license -;PREFERRED_LICENSES = Apache License 2.0,MIT License +PREFERRED_LICENSES = GPL-3.0-or-later, GPL-2.0-or-later, Apache License 2.0, MIT License ;; ;; Disable the ability to interact with repositories using the HTTP protocol ;DISABLE_HTTP_GIT = false