Update alpine-postgresql-install.sh

This commit is contained in:
CanbiZ 2025-04-01 09:24:05 +02:00
parent 897901b837
commit 47dee1ad5c

View File

@ -54,6 +54,48 @@ chmod +x $service_path
rc-update add postgresql default
msg_ok "Created PostgreSQL Service"
msg_info "Configuring PostgreSQL"
cat <<EOF >/var/lib/postgresql/data/pg_hba.conf
# PostgreSQL Client Authentication Configuration File
local all postgres peer
local all all md5
host all all 127.0.0.1/32 scram-sha-256
host all all 0.0.0.0/24 md5
host all all ::1/128 scram-sha-256
host all all 0.0.0.0/0 md5
local replication all peer
host replication all 127.0.0.1/32 scram-sha-256
host replication all ::1/128 scram-sha-256
EOF
cat <<EOF >/var/lib/postgresql/data/postgresql.conf
data_directory = '/var/lib/postgresql/data'
hba_file = '/var/lib/postgresql/data/pg_hba.conf'
ident_file = '/var/lib/postgresql/data/pg_ident.conf'
external_pid_file = '/var/run/postgresql.pid'
listen_addresses = '*'
port = 5432
max_connections = 100
unix_socket_directories = '/var/run/postgresql'
ssl = off
shared_buffers = 128MB
dynamic_shared_memory_type = posix
max_wal_size = 1GB
min_wal_size = 80MB
log_line_prefix = '%m [%p] %q%u@%d '
log_timezone = 'Etc/UTC'
cluster_name = 'alpine_pg'
datestyle = 'iso, mdy'
timezone = 'Etc/UTC'
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C'
default_text_search_config = 'pg_catalog.english'
include_dir = 'conf.d'
EOF
msg_ok "Configured PostgreSQL"
msg_info "Starting PostgreSQL"
service postgresql start
msg_ok "Started PostgreSQL"
@ -61,12 +103,11 @@ msg_ok "Started PostgreSQL"
read -p "Do you want to install Adminer with Lighttpd? (y/N): " install_adminer
if [[ "$install_adminer" =~ ^[Yy]$ ]]; then
msg_info "Installing Adminer with Lighttpd"
apk add --no-cache lighttpd php php-pdo_pgsql php-session php-json php-mbstring
msg_ok "Installed Lighttpd and PHP"
msg_info "Downloading Adminer"
mkdir -p /var/www/adminer
curl -L "https://www.adminer.org/latest.php" -o /var/www/adminer/index.php
curl -fsSL "https://www.adminer.org/latest.php" -o /var/www/adminer/index.php
chown -R lighttpd:lighttpd /var/www/adminer
msg_ok "Installed Adminer"
@ -103,7 +144,6 @@ include "modules.conf"' > /etc/lighttpd/lighttpd.conf
else
msg_ok "Skipped Adminer and Lighttpd installation."
fi
}
motd_ssh
customize