- initial version 1.4.1 - add patch gitea.app.ini.patch to set some variables OBS-URL: https://build.opensuse.org/request/show/614308 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitea?expand=0&rev=1
37 lines
708 B
Plaintext
37 lines
708 B
Plaintext
# gitea under /git and with ssl
|
|
#
|
|
# Change following in /etc/gitea/conf/app.ini
|
|
#
|
|
# You have two options
|
|
#
|
|
# First option:
|
|
#
|
|
# - ROOT_URL to http://<your_server>.<your_domain>/git/
|
|
#
|
|
#
|
|
# Second option:
|
|
#
|
|
# - PROTOCOL to https
|
|
# - ROOT_URL to https://<your_server>.<your_domain>/git/
|
|
#
|
|
# Uncomment below rows and change <your_server>.<your_domain>
|
|
# to your server and domain.
|
|
|
|
|
|
#SSLProxyEngine On
|
|
|
|
|
|
#<Location /git>
|
|
# Require all granted
|
|
# ProxyPass http://localhost:3000
|
|
# ProxyPassReverse http://localhost:3000
|
|
#</Location>
|
|
|
|
# XOR
|
|
|
|
#<Location /git>
|
|
# Require all granted
|
|
# ProxyPass https://<your_server>.<your_domain>:3000
|
|
# ProxyPassReverse https://<your_server>.<your_domain>:3000
|
|
#</Location>
|