chore & fix: enable CORS to work with Forgejo API
This commit is contained in:
parent
f2d07bbca0
commit
4ff435c056
2 changed files with 113 additions and 3 deletions
|
@ -1,15 +1,19 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
forgejo:
|
forgejo:
|
||||||
image: codeberg.org/forgejo/forgejo:1.18.0-1
|
image: codeberg.org/forgejo/forgejo:1.18.0-1
|
||||||
container_name: hostea-dash-forgejo
|
container_name: hostea-dash-forgejo
|
||||||
network_mode: host
|
network_mode: host
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1001
|
||||||
- USER_GID=1000
|
- USER_GID=1001
|
||||||
|
- FORGEJO_cors_ENABLED=true
|
||||||
|
- FORGEJO_cors_ALLOW_DOMAIN="*"
|
||||||
|
- FORGEJO_cors_METHODS="GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS"
|
||||||
|
- FORGEJO_cors_ALLOW_CREDENTIALS=false
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- ./integration/conf/app.ini:/data/gitea/conf/app.ini:wo
|
||||||
|
|
106
integration/conf/app.ini
Normal file
106
integration/conf/app.ini
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
APP_NAME = Forgejo:+Beyond+Coding+We+Forge
|
||||||
|
RUN_USER = git
|
||||||
|
RUN_MODE = prod
|
||||||
|
|
||||||
|
[cors]
|
||||||
|
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; ;
|
||||||
|
; ; More information about CORS can be found here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#The_HTTP_response_headers
|
||||||
|
; ; enable cors headers (disabled by default)
|
||||||
|
ENABLED = true
|
||||||
|
; ;
|
||||||
|
; ; scheme of allowed requests
|
||||||
|
; SCHEME = http
|
||||||
|
; ;
|
||||||
|
; ; list of requesting domains that are allowed
|
||||||
|
ALLOW_DOMAIN = *
|
||||||
|
; ;
|
||||||
|
; ; allow subdomains of headers listed above to request
|
||||||
|
; ALLOW_SUBDOMAIN = false
|
||||||
|
; ;
|
||||||
|
; ; list of methods allowed to request
|
||||||
|
METHODS = GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS
|
||||||
|
; ;
|
||||||
|
; ; max time to cache response
|
||||||
|
; MAX_AGE = 10m
|
||||||
|
; ;
|
||||||
|
; ; allow request with credentials
|
||||||
|
ALLOW_CREDENTIALS = true
|
||||||
|
; ;
|
||||||
|
; ; headers to permit
|
||||||
|
HEADERS = Content-Type,User-Agent
|
||||||
|
|
||||||
|
[federation]
|
||||||
|
ENABLED = true
|
||||||
|
|
||||||
|
[database]
|
||||||
|
DB_TYPE = sqlite3
|
||||||
|
HOST = localhost:3306
|
||||||
|
NAME = forgejo
|
||||||
|
USER = root
|
||||||
|
PASSWD =
|
||||||
|
SCHEMA =
|
||||||
|
SSL_MODE = disable
|
||||||
|
CHARSET = utf8
|
||||||
|
PATH = /data/gitea/gitea.db
|
||||||
|
LOG_SQL = false
|
||||||
|
|
||||||
|
[repository]
|
||||||
|
ROOT = /data/git/repositories
|
||||||
|
|
||||||
|
[server]
|
||||||
|
SSH_DOMAIN = localhost
|
||||||
|
DOMAIN = localhost
|
||||||
|
HTTP_PORT = 3000
|
||||||
|
ROOT_URL = http://localhost:3000/
|
||||||
|
DISABLE_SSH = false
|
||||||
|
SSH_PORT = 22
|
||||||
|
LFS_START_SERVER = true
|
||||||
|
LFS_JWT_SECRET = J38QUokkI8qtDatFMChy6dDqwGPRtn-I5bn6hs1gpA8
|
||||||
|
OFFLINE_MODE = false
|
||||||
|
|
||||||
|
[lfs]
|
||||||
|
PATH = /data/git/lfs
|
||||||
|
|
||||||
|
[mailer]
|
||||||
|
ENABLED = false
|
||||||
|
|
||||||
|
[service]
|
||||||
|
REGISTER_EMAIL_CONFIRM = false
|
||||||
|
ENABLE_NOTIFY_MAIL = false
|
||||||
|
DISABLE_REGISTRATION = false
|
||||||
|
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
|
||||||
|
ENABLE_CAPTCHA = false
|
||||||
|
REQUIRE_SIGNIN_VIEW = false
|
||||||
|
DEFAULT_KEEP_EMAIL_PRIVATE = false
|
||||||
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
|
||||||
|
DEFAULT_ENABLE_TIMETRACKING = true
|
||||||
|
NO_REPLY_ADDRESS = noreply.localhost
|
||||||
|
|
||||||
|
[picture]
|
||||||
|
ENABLE_FEDERATED_AVATAR = true
|
||||||
|
|
||||||
|
[openid]
|
||||||
|
ENABLE_OPENID_SIGNIN = true
|
||||||
|
ENABLE_OPENID_SIGNUP = true
|
||||||
|
|
||||||
|
[session]
|
||||||
|
PROVIDER = file
|
||||||
|
|
||||||
|
[log]
|
||||||
|
MODE = console
|
||||||
|
LEVEL = info
|
||||||
|
ROOT_PATH = /data/gitea/log
|
||||||
|
ROUTER = console
|
||||||
|
|
||||||
|
[repository.pull-request]
|
||||||
|
DEFAULT_MERGE_STYLE = merge
|
||||||
|
|
||||||
|
[repository.signing]
|
||||||
|
DEFAULT_TRUST_MODEL = committer
|
||||||
|
|
||||||
|
[security]
|
||||||
|
INSTALL_LOCK = true
|
||||||
|
INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE2OTUwNDM4MzR9.OXP0MrWVJQb-3RFPcVPK7eDSPbMzc-lTjLkWjzZVouM
|
||||||
|
PASSWORD_HASH_ALGO = pbkdf2
|
Loading…
Add table
Reference in a new issue