forked from cloudron-apps/gitea-app
Use APP_DOMAIN instead of hostname -f
This commit is contained in:
parent
f617a52ca3
commit
ef9109b6e6
2 changed files with 2 additions and 4 deletions
|
@ -17,7 +17,7 @@ SCRIPT_TYPE = bash
|
|||
|
||||
[server]
|
||||
PROTOCOL = http
|
||||
DOMAIN = ##HOSTNAME
|
||||
DOMAIN = ##DOMAIN
|
||||
ROOT_URL = https://%(DOMAIN)s/
|
||||
HTTP_ADDR =
|
||||
HTTP_PORT = 3000
|
||||
|
|
4
start.sh
4
start.sh
|
@ -2,8 +2,6 @@
|
|||
|
||||
set -eu -o pipefail
|
||||
|
||||
readonly fqdn=$(hostname -f)
|
||||
|
||||
setup_ldap_source() {
|
||||
set -eu
|
||||
|
||||
|
@ -27,7 +25,7 @@ sed -e "s/^Port .*/Port ${SSH_PORT}/" \
|
|||
-e "s/^#ListenAddress .*/ListenAddress 0.0.0.0/" \
|
||||
/etc/ssh/sshd_config > /run/gogs/sshd_config
|
||||
|
||||
sed -e "s/##HOSTNAME/${fqdn}/g" \
|
||||
sed -e "s/##DOMAIN/${APP_DOMAIN}/g" \
|
||||
-e "s/##SSH_PORT/${SSH_PORT}/g" \
|
||||
-e "s/##MYSQL_HOST/${MYSQL_HOST}/g" \
|
||||
-e "s/##MYSQL_PORT/${MYSQL_PORT}/g" \
|
||||
|
|
Loading…
Reference in a new issue