mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Centralize database setup there and remove all copying of config.dev from the entrypoint scripts (the Dockerfile now does it). Signed-off-by: Kevin Morris <kevr@0cost.org>
32 lines
1.2 KiB
Bash
Executable file
32 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
set -eou pipefail
|
|
|
|
for archive in packages pkgbase users packages-meta-v1.json packages-meta-ext-v1.json; do
|
|
ln -vsf /var/lib/aurweb/archives/${archive}.gz /aurweb/web/html/${archive}.gz
|
|
done
|
|
|
|
# Setup database.
|
|
NO_INITDB=1 /docker/mariadb-init-entrypoint.sh
|
|
|
|
# Setup some other options.
|
|
aurweb-config set options cache 'memcache'
|
|
aurweb-config set options aur_location "$AURWEB_PHP_PREFIX"
|
|
aurweb-config set options git_clone_uri_anon "${AURWEB_PHP_PREFIX}/%s.git"
|
|
aurweb-config set options git_clone_uri_priv "${AURWEB_SSHD_PREFIX}/%s.git"
|
|
|
|
# Listen on :9000.
|
|
sed -ri 's/^(listen).*/\1 = 0.0.0.0:9000/' /etc/php/php-fpm.d/www.conf
|
|
sed -ri 's/^;?(clear_env).*/\1 = no/' /etc/php/php-fpm.d/www.conf
|
|
|
|
# Log to stderr. View logs via `docker-compose logs php-fpm`.
|
|
sed -ri 's|^(error_log) = .*$|\1 = /proc/self/fd/2|g' /etc/php/php-fpm.conf
|
|
sed -ri 's|^;?(access\.log) = .*$|\1 = /proc/self/fd/2|g' \
|
|
/etc/php/php-fpm.d/www.conf
|
|
|
|
sed -ri 's/^;?(extension=pdo_mysql)/\1/' /etc/php/php.ini
|
|
sed -ri 's/^;?(open_basedir).*$/\1 = \//' /etc/php/php.ini
|
|
|
|
# Use the sqlite3 extension line for memcached.
|
|
sed -ri 's/^;(extension)=sqlite3$/\1=memcached/' /etc/php/php.ini
|
|
|
|
exec "$@"
|