summarylogtreecommitdiffstats
path: root/01-adjust-config.patch
diff options
context:
space:
mode:
authorfrancoism902018-06-16 12:36:45 +0200
committerfrancoism902018-06-16 12:36:45 +0200
commit5a42e389b8fb6ea6e10fa2e5506823b9193e200c (patch)
treeba899991f8a67fe2fd86711b99d86c8e28be108a /01-adjust-config.patch
parenta60ceaab19c69b88ff99929f64e8eb8eac605de3 (diff)
downloadaur-5a42e389b8fb6ea6e10fa2e5506823b9193e200c.tar.gz
Use home-folder for repos, create user with home, fix building
Diffstat (limited to '01-adjust-config.patch')
-rw-r--r--01-adjust-config.patch133
1 files changed, 18 insertions, 115 deletions
diff --git a/01-adjust-config.patch b/01-adjust-config.patch
index 6596cedbb04b..5a0a262f8677 100644
--- a/01-adjust-config.patch
+++ b/01-adjust-config.patch
@@ -1,136 +1,39 @@
--- app.ini.sample
-+++ app.ini.sample 2018-01-07 04:29:27.120000000 +0300
-@@ -7,10 +7,10 @@
++++ app.ini.sample
+@@ -7,12 +7,12 @@
+ ; App name that shows in every page title
+ APP_NAME = Gitea: Git with a cup of tea
; Change it if you run locally
- RUN_USER = git
+-RUN_USER = git
++RUN_USER = gitea
; Either "dev", "prod" or "test", default is "dev"
--RUN_MODE = dev
-+RUN_MODE = prod
+ RUN_MODE = dev
[repository]
-ROOT =
-+ROOT = /var/lib/gitea/repos
++ROOT = /home/gitea/gitea-repositories/
SCRIPT_TYPE = bash
; Default ANSI charset
ANSI_CHARSET =
-@@ -42,13 +42,13 @@
-
- [repository.local]
- ; Path for uploads. Defaults to `tmp/local-repo`
--LOCAL_COPY_PATH = tmp/local-repo
-+LOCAL_COPY_PATH = /var/lib/gitea/tmp/local-repo
-
- [repository.upload]
- ; Whether repository file uploads are enabled. Defaults to `true`
- ENABLED = true
- ; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart)
--TEMP_PATH = data/tmp/uploads
-+TEMP_PATH = /var/lib/gitea/data/tmp/uploads
- ; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type
- ALLOWED_TYPES =
- ; Max size of each file in MB. Defaults to 3MB
-@@ -136,7 +136,7 @@
- ; Port number builtin SSH server listens on
+@@ -141,7 +141,7 @@
+ ; The port number the builtin SSH server should listen on
SSH_LISTEN_PORT = %(SSH_PORT)s
; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'.
-SSH_ROOT_PATH =
-+SSH_ROOT_PATH = /var/lib/gitea/.ssh
- ; For built-in SSH server only, choose the ciphers to support for SSH connections,
++SSH_ROOT_PATH = /home/gitea/.ssh
+ ; For the built-in SSH server, choose the ciphers to support for SSH connections,
; for system SSH this setting has no effect
SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128
-@@ -167,13 +167,13 @@
- ; not forget to export the private key):
- ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
- ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
--CERT_FILE = custom/https/cert.pem
--KEY_FILE = custom/https/key.pem
-+CERT_FILE = /var/lib/gitea/cert/cert.pem
-+KEY_FILE = /var/lib/gitea/cert/key.pem
- ; Upper level of template and static file path
+@@ -176,7 +176,7 @@
+ KEY_FILE = custom/https/key.pem
+ ; Root directory containing templates and static files.
; default is the path where Gitea is executed
-STATIC_ROOT_PATH =
-+STATIC_ROOT_PATH = /usr/share/gitea
++STATIC_ROOT_PATH = /var/lib/gitea
; Default path for App data
--APP_DATA_PATH = data
-+APP_DATA_PATH = /var/lib/gitea/data
+ APP_DATA_PATH = data
; Application level GZIP support
- ENABLE_GZIP = false
- ; Landing page, can be "home", "explore", or "organizations"
-@@ -181,7 +181,7 @@
- ; Enables git-lfs support. true or false, default is false.
- LFS_START_SERVER = false
- ; Where your lfs files put on, default is data/lfs.
--LFS_CONTENT_PATH = data/lfs
-+LFS_CONTENT_PATH = /var/lib/gitea/data/lfs
- ; LFS authentication secret, changed this to yourself.
- LFS_JWT_SECRET =
-
-@@ -197,22 +197,22 @@
- DB_TYPE = mysql
- HOST = 127.0.0.1:3306
- NAME = gitea
--USER = root
-+USER = gitea
- PASSWD =
- ; For "postgres" only, either "disable", "require" or "verify-full"
- SSL_MODE = disable
- ; For "sqlite3" and "tidb", use absolute path when you start as service
--PATH = data/gitea.db
-+PATH = /var/lib/gitea/gitea.db
- ; For "sqlite3" only. Query timeout
- SQLITE_TIMEOUT = 500
- ; For iterate buffer, default is 50
- ITERATE_BUFFER_SIZE = 50
-
- [indexer]
--ISSUE_INDEXER_PATH = indexers/issues.bleve
-+ISSUE_INDEXER_PATH = /var/lib/gitea/indexers/issues.bleve
- ; repo indexer by default disabled, since it uses a lot of disk space
- REPO_INDEXER_ENABLED = false
--REPO_INDEXER_PATH = indexers/repos.bleve
-+REPO_INDEXER_PATH = /var/lib/gitea/indexers/repos.bleve
- UPDATE_BUFFER_LEN = 20
- MAX_FILE_SIZE = 1048576
-
-@@ -336,8 +336,8 @@
- SKIP_VERIFY =
- ; Use client certificate
- USE_CERTIFICATE = false
--CERT_FILE = custom/mailer/cert.pem
--KEY_FILE = custom/mailer/key.pem
-+CERT_FILE = /var/lib/gitea/cert/cert.pem
-+KEY_FILE = /var/lib/gitea/cert/key.pem
- ; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format
- FROM =
- ; Mailer user name and password
-@@ -373,7 +373,7 @@
- ; file: session file path, e.g. `data/sessions`
- ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
- ; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table`
--PROVIDER_CONFIG = data/sessions
-+PROVIDER_CONFIG = /var/lib/gitea/data/sessions
- ; Session cookie name
- COOKIE_NAME = i_like_gitea
- ; If you use session in https only, default is false
-@@ -386,7 +386,7 @@
- SESSION_LIFE_TIME = 86400
-
- [picture]
--AVATAR_UPLOAD_PATH = data/avatars
-+AVATAR_UPLOAD_PATH = /var/lib/gitea/data/avatars
- ; Chinese users can choose "duoshuo"
- ; or a custom avatar source, like: http://cn.gravatar.com/avatar/
- GRAVATAR_SOURCE = gravatar
-@@ -401,7 +401,7 @@
- ; Whether attachments are enabled. Defaults to `true`
- ENABLE = true
- ; Path for attachments. Defaults to `data/attachments`
--PATH = data/attachments
-+PATH = /var/lib/gitea/data/attachments
- ; One or more allowed types, e.g. image/jpeg|image/png
- ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
- ; Max size of each file. Defaults to 32MB
-@@ -416,7 +416,7 @@
+@@ -431,7 +431,7 @@
FORMAT =
[log]