2024-12-26 10:36:17 +01:00
|
|
|
#!/usr/bin/env bash
|
2026-09-02 11:40:00 +02:00
|
|
|
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
|
|
|
|
|
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
|
|
|
|
|
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2024-12-26 10:36:17 +01:00
|
|
|
# Author: jkrgr0
|
|
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
2026-02-24 15:11:53 +01:00
|
|
|
# Source: https://docs.2fauth.app/ | Github: https://github.com/Bubka/2FAuth
|
2024-12-26 10:36:17 +01:00
|
|
|
|
|
|
|
|
APP="2FAuth"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_tags="${var_tags:-2fa;authenticator}"
|
|
|
|
|
var_cpu="${var_cpu:-1}"
|
|
|
|
|
var_ram="${var_ram:-512}"
|
|
|
|
|
var_disk="${var_disk:-2}"
|
|
|
|
|
var_os="${var_os:-debian}"
|
2025-10-05 22:29:43 +02:00
|
|
|
var_version="${var_version:-13}"
|
2026-06-12 00:16:15 +10:00
|
|
|
var_arm64="${var_arm64:-yes}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2024-12-26 10:36:17 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
|
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2025-05-28 11:25:13 +02:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
|
|
|
|
|
2026-04-26 09:51:33 +03:00
|
|
|
if [[ ! -d /opt/2fauth ]]; then
|
2025-05-28 11:25:13 +02:00
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
2025-12-16 15:11:22 +01:00
|
|
|
setup_mariadb
|
2025-08-29 12:27:24 +02:00
|
|
|
if check_for_gh_release "2fauth" "Bubka/2FAuth"; then
|
2025-10-05 22:29:43 +02:00
|
|
|
$STD apt update
|
|
|
|
|
$STD apt -y upgrade
|
2025-05-28 11:25:13 +02:00
|
|
|
|
|
|
|
|
msg_info "Creating Backup"
|
2026-06-13 18:43:15 +02:00
|
|
|
create_backup \
|
|
|
|
|
/opt/2fauth/.env \
|
|
|
|
|
/opt/2fauth/storage
|
|
|
|
|
|
2025-12-16 15:11:02 +01:00
|
|
|
if ! dpkg -l | grep -q 'php8.4'; then
|
2025-05-28 11:25:13 +02:00
|
|
|
cp /etc/nginx/conf.d/2fauth.conf /etc/nginx/conf.d/2fauth.conf.bak
|
|
|
|
|
fi
|
|
|
|
|
msg_ok "Backup Created"
|
|
|
|
|
|
2025-12-16 15:11:02 +01:00
|
|
|
if ! dpkg -l | grep -q 'php8.4'; then
|
2026-01-30 13:05:05 +01:00
|
|
|
PHP_VERSION="8.4" PHP_FPM="YES" setup_php
|
2025-12-16 15:11:02 +01:00
|
|
|
sed -i 's/php8\.[0-9]/php8.4/g' /etc/nginx/conf.d/2fauth.conf
|
2024-12-26 10:36:17 +01:00
|
|
|
fi
|
2026-06-13 18:43:15 +02:00
|
|
|
|
2026-01-07 08:49:12 +01:00
|
|
|
fetch_and_deploy_gh_release "2fauth" "Bubka/2FAuth" "tarball"
|
2025-07-15 13:12:32 +02:00
|
|
|
setup_composer
|
2026-06-13 18:43:15 +02:00
|
|
|
restore_backup
|
|
|
|
|
|
|
|
|
|
msg_info "Configuring 2FAuth"
|
|
|
|
|
cd /opt/2fauth
|
2025-05-28 11:25:13 +02:00
|
|
|
export COMPOSER_ALLOW_SUPERUSER=1
|
2025-11-15 17:29:47 +01:00
|
|
|
$STD composer install --no-dev --prefer-dist
|
2025-05-28 11:25:13 +02:00
|
|
|
php artisan 2fauth:install
|
2026-04-26 09:51:33 +03:00
|
|
|
chown -R www-data: /opt/2fauth
|
|
|
|
|
chmod -R 755 /opt/2fauth
|
2026-07-15 21:36:13 +02:00
|
|
|
$STD php artisan 2fauth:fix-passport-key-permissions
|
2026-04-26 09:51:33 +03:00
|
|
|
$STD systemctl restart php8.4-fpm
|
2025-05-28 11:25:13 +02:00
|
|
|
$STD systemctl restart nginx
|
2026-06-13 18:43:15 +02:00
|
|
|
msg_ok "Configured 2FAuth"
|
2025-10-30 09:24:16 -07:00
|
|
|
msg_ok "Updated successfully!"
|
2025-05-28 11:25:13 +02:00
|
|
|
fi
|
|
|
|
|
exit
|
2024-12-26 10:36:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2024-12-26 10:36:17 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
2026-06-03 11:03:13 +02:00
|
|
|
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
|
|
|
|
echo -e "${GATEWAY}${BGN}http://${IP}:80${CL}"
|