You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- #!/bin/sh
- if [ ! -d /run/nginx ]; then
- mkdir -p /run/nginx
- chown nginx /run/nginx
- fi
-
- while [ ! -f /data/gitea/conf/app.ini ]; do
- echo "Gitea configuration is still not ready waiting 10 seconds..."
- sleep 10
- done
-
- GITEA_DOMAIN=$(iniget /data/gitea/conf/app.ini server DOMAIN)
- GITEA_DOMAIN=${GITEA_DOMAIN:-"localhost"} envsubst '${GITEA_DOMAIN}' < /etc/templates/nginx.conf > /etc/nginx/nginx.conf
|