mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-12-10 03:59:39 -06:00
59 lines
1.7 KiB
Bash
59 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 communtiy-scripts ORG
|
|
# Author: MickLesk (Canbiz)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://wordpress.org/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
PHP_VERSION="8.4" PHP_FPM="YES" PHP_MODULE="common,snmp,imap,mysql" PHP_APACHE="YES" setup_php
|
|
setup_mariadb
|
|
MARIADB_DB_NAME="wordpress_db" MARIADB_DB_USER="wordpress" setup_mariadb_db
|
|
|
|
msg_info "Installing Wordpress (Patience)"
|
|
cd /var/www/html
|
|
curl -fsSL "https://wordpress.org/latest.zip" -o "latest.zip"
|
|
$STD unzip latest.zip
|
|
chown -R www-data:www-data wordpress/
|
|
cd /var/www/html/wordpress
|
|
find . -type d -exec chmod 755 {} \;
|
|
find . -type f -exec chmod 644 {} \;
|
|
mv wp-config-sample.php wp-config.php
|
|
sed -i -e "s|^define( 'DB_NAME', '.*' );|define( 'DB_NAME', '$MARIADB_DB_NAME' );|" \
|
|
-e "s|^define( 'DB_USER', '.*' );|define( 'DB_USER', '$MARIADB_DB_USER' );|" \
|
|
-e "s|^define( 'DB_PASSWORD', '.*' );|define( 'DB_PASSWORD', '$MARIADB_DB_PASS' );|" \
|
|
/var/www/html/wordpress/wp-config.php
|
|
rm -rf /var/www/html/latest.zip
|
|
msg_ok "Installed Wordpress"
|
|
|
|
msg_info "Setup Services"
|
|
cat <<EOF >/etc/apache2/sites-available/wordpress.conf
|
|
<VirtualHost *:80>
|
|
ServerName yourdomain.com
|
|
DocumentRoot /var/www/html/wordpress
|
|
|
|
<Directory /var/www/html/wordpress>
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
ErrorLog \${APACHE_LOG_DIR}/error.log
|
|
CustomLog \${APACHE_LOG_DIR}/access.log combined
|
|
|
|
</VirtualHost>
|
|
EOF
|
|
$STD a2ensite wordpress.conf
|
|
$STD a2dissite 000-default.conf
|
|
systemctl reload apache2
|
|
msg_ok "Created Services"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|