mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-25 13:47:15 +02:00
ghost-install.sh
This commit is contained in:
committed by
GitHub
parent
ed5d58b4d1
commit
8d42e1f902
@@ -1,45 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: fabrice1236
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://ghost.org/ | Github: https://github.com/TryGhost/Ghost
|
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
||||||
color
|
|
||||||
verb_ip6
|
|
||||||
catch_errors
|
|
||||||
setting_up_container
|
|
||||||
network_check
|
|
||||||
update_os
|
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
|
||||||
$STD apt install -y \
|
|
||||||
nginx \
|
|
||||||
ca-certificates \
|
|
||||||
libjemalloc2 \
|
|
||||||
git
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
setup_mariadb
|
|
||||||
MARIADB_DB_NAME="ghost" MARIADB_DB_USER="ghostuser" setup_mariadb_db
|
|
||||||
NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs
|
|
||||||
|
|
||||||
msg_info "Installing Ghost CLI"
|
|
||||||
$STD npm install ghost-cli@latest -g
|
|
||||||
msg_ok "Installed Ghost CLI"
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
|
||||||
$STD adduser --disabled-password --gecos "Ghost user" ghost-user
|
|
||||||
$STD usermod -aG sudo ghost-user
|
|
||||||
echo "ghost-user ALL=(ALL) NOPASSWD:ALL" | tee /etc/sudoers.d/ghost-user
|
|
||||||
mkdir -p /var/www/ghost
|
|
||||||
chown -R ghost-user:ghost-user /var/www/ghost
|
|
||||||
chmod 775 /var/www/ghost
|
|
||||||
$STD sudo -u ghost-user -H sh -c "cd /var/www/ghost && ghost install --db=mysql --dbhost=localhost --dbuser=$MARIADB_DB_USER --dbpass=$MARIADB_DB_PASS --dbname=$MARIADB_DB_NAME --url=http://localhost:2368 --no-prompt --no-setup-nginx --no-setup-ssl --no-setup-mysql --enable --start --ip 0.0.0.0"
|
|
||||||
rm /etc/sudoers.d/ghost-user
|
|
||||||
msg_ok "Creating Service"
|
|
||||||
|
|
||||||
motd_ssh
|
|
||||||
customize
|
|
||||||
cleanup_lxc
|
|
||||||
Reference in New Issue
Block a user