Compare commits
6 commits
master
...
gotosocial
Author | SHA1 | Date | |
---|---|---|---|
2304305e01 | |||
b26c0befa7 | |||
a139278f8b | |||
a4953ee83a | |||
f9d2a48a6a | |||
96fa64016a |
4 changed files with 103 additions and 31 deletions
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": [
|
|
||||||
"config:recommended",
|
|
||||||
":dependencyDashboard"
|
|
||||||
],
|
|
||||||
"labels": [
|
|
||||||
"renovate-bot"
|
|
||||||
],
|
|
||||||
"prHourlyLimit": 0,
|
|
||||||
"timezone": "Asia/kolkata",
|
|
||||||
"prCreation": "immediate",
|
|
||||||
"vulnerabilityAlerts": {
|
|
||||||
"enabled": true,
|
|
||||||
"labels": [
|
|
||||||
"renovate-bot",
|
|
||||||
"renovate-security",
|
|
||||||
"security"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
101
targets/forgejo/conf/app.ini
Normal file
101
targets/forgejo/conf/app.ini
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
APP_NAME = Forgejo: Beyond coding. We forge.
|
||||||
|
RUN_MODE = prod
|
||||||
|
RUN_USER = git
|
||||||
|
WORK_PATH = /data/gitea
|
||||||
|
|
||||||
|
[repository]
|
||||||
|
ROOT = /data/git/repositories
|
||||||
|
|
||||||
|
[repository.local]
|
||||||
|
LOCAL_COPY_PATH = /data/gitea/tmp/local-repo
|
||||||
|
|
||||||
|
[repository.upload]
|
||||||
|
TEMP_PATH = /data/gitea/uploads
|
||||||
|
|
||||||
|
[server]
|
||||||
|
APP_DATA_PATH = /data/gitea
|
||||||
|
DOMAIN = forgejo
|
||||||
|
SSH_DOMAIN = localhost
|
||||||
|
HTTP_PORT = 80
|
||||||
|
ROOT_URL = http://forgejo:80/
|
||||||
|
DISABLE_SSH = false
|
||||||
|
SSH_PORT = 22
|
||||||
|
SSH_LISTEN_PORT = 22
|
||||||
|
LFS_START_SERVER = true
|
||||||
|
LFS_JWT_SECRET = hqcWxK62ZAgYFGNPOj8JA2657ZBlaseX5EYjeibS5T8
|
||||||
|
OFFLINE_MODE = false
|
||||||
|
|
||||||
|
[database]
|
||||||
|
PATH = /data/gitea/gitea.db
|
||||||
|
DB_TYPE = sqlite3
|
||||||
|
HOST = localhost:3306
|
||||||
|
NAME = gitea
|
||||||
|
USER = root
|
||||||
|
PASSWD =
|
||||||
|
LOG_SQL = false
|
||||||
|
SCHEMA =
|
||||||
|
SSL_MODE = disable
|
||||||
|
|
||||||
|
[indexer]
|
||||||
|
ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
|
||||||
|
|
||||||
|
[session]
|
||||||
|
PROVIDER_CONFIG = /data/gitea/sessions
|
||||||
|
PROVIDER = file
|
||||||
|
|
||||||
|
[picture]
|
||||||
|
AVATAR_UPLOAD_PATH = /data/gitea/avatars
|
||||||
|
REPOSITORY_AVATAR_UPLOAD_PATH = /data/gitea/repo-avatars
|
||||||
|
|
||||||
|
[attachment]
|
||||||
|
PATH = /data/gitea/attachments
|
||||||
|
|
||||||
|
[log]
|
||||||
|
MODE = console
|
||||||
|
LEVEL = info
|
||||||
|
ROOT_PATH = /data/gitea/log
|
||||||
|
|
||||||
|
[security]
|
||||||
|
INSTALL_LOCK = true
|
||||||
|
SECRET_KEY =
|
||||||
|
REVERSE_PROXY_LIMIT = 1
|
||||||
|
REVERSE_PROXY_TRUSTED_PROXIES = *
|
||||||
|
INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE2OTU3NDkwOTd9.VhubdZ2bMMSXA7x5SEMo-ctXBnVTQPlHNbKJEZe2ZzI
|
||||||
|
PASSWORD_HASH_ALGO = pbkdf2_hi
|
||||||
|
|
||||||
|
[service]
|
||||||
|
DISABLE_REGISTRATION = false
|
||||||
|
REQUIRE_SIGNIN_VIEW = false
|
||||||
|
REGISTER_EMAIL_CONFIRM = false
|
||||||
|
ENABLE_NOTIFY_MAIL = false
|
||||||
|
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
|
||||||
|
ENABLE_CAPTCHA = false
|
||||||
|
DEFAULT_KEEP_EMAIL_PRIVATE = false
|
||||||
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
|
||||||
|
DEFAULT_ENABLE_TIMETRACKING = true
|
||||||
|
NO_REPLY_ADDRESS = noreply.localhost
|
||||||
|
|
||||||
|
[lfs]
|
||||||
|
PATH = /data/git/lfs
|
||||||
|
|
||||||
|
[mailer]
|
||||||
|
ENABLED = false
|
||||||
|
|
||||||
|
[openid]
|
||||||
|
ENABLE_OPENID_SIGNIN = true
|
||||||
|
ENABLE_OPENID_SIGNUP = true
|
||||||
|
|
||||||
|
[cron.update_checker]
|
||||||
|
ENABLED = false
|
||||||
|
|
||||||
|
[repository.pull-request]
|
||||||
|
DEFAULT_MERGE_STYLE = merge
|
||||||
|
|
||||||
|
[repository.signing]
|
||||||
|
DEFAULT_TRUST_MODEL = committer
|
||||||
|
|
||||||
|
[oauth2]
|
||||||
|
JWT_SECRET = 6XKGvhqiFK0oXo8wckWPZDS5_0BlO4dSATDXkh6BLlY
|
||||||
|
|
||||||
|
[federation]
|
||||||
|
ENABLED = true
|
|
@ -5,10 +5,7 @@ services:
|
||||||
image: codeberg.org/forgejo/forgejo:1.20
|
image: codeberg.org/forgejo/forgejo:1.20
|
||||||
container_name: forgejo
|
container_name: forgejo
|
||||||
environment:
|
environment:
|
||||||
- FORGEJO__security__INSTALL_LOCK=true
|
- USER_UID=1001
|
||||||
- FORGEJO__federation__ENABLED=true
|
|
||||||
- FORGEJO__server__ROOT_URL=http://forgejo
|
|
||||||
- FORGEJO__server__HTTP_PORT=80
|
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- ftest
|
- ftest
|
||||||
|
@ -16,6 +13,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- ./conf/app.ini:/data/gitea/conf/app.ini:wo
|
||||||
ports:
|
ports:
|
||||||
- "7000:80"
|
- "7000:80"
|
||||||
- "2222:22"
|
- "2222:22"
|
||||||
|
|
|
@ -20,12 +20,6 @@ url = "https://git.batsense.net/ForgeFlux/nodeinfo-test"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
container = "forgeflux/nodeinfo-test"
|
container = "forgeflux/nodeinfo-test"
|
||||||
[[suites.tests]]
|
[[suites.tests]]
|
||||||
name = "host_meta"
|
|
||||||
url = "https://git.batsense.net/ForgeFlux/host-meta-test"
|
|
||||||
version = "0.1.0"
|
|
||||||
container = "forgeflux/host-meta-test"
|
|
||||||
env_vars = { FTEST_USER="alice@gotosocial"}
|
|
||||||
[[suites.tests]]
|
|
||||||
name = "acitivitypub"
|
name = "acitivitypub"
|
||||||
url = "https://git.batsense.net/ForgeFlux/ap-test"
|
url = "https://git.batsense.net/ForgeFlux/ap-test"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
Loading…
Reference in a new issue