mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-08-30 03:55:45 +00:00
Compare commits
1 Commits
add-script
...
add-script
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c4307fe2b |
@@ -3,15 +3,15 @@ _CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
|
||||
_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")
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: Pierre du Plessis
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/solidinvoice/solidinvoice
|
||||
# Source: https://github.com/DefGuard/defguard
|
||||
|
||||
APP="SolidInvoice"
|
||||
var_tags="${var_tags:-invoicing;finance;billing}"
|
||||
APP="Defguard"
|
||||
var_tags="${var_tags:-vpn;wireguard;sso}"
|
||||
var_cpu="${var_cpu:-2}"
|
||||
var_ram="${var_ram:-2048}"
|
||||
var_disk="${var_disk:-4}"
|
||||
var_disk="${var_disk:-8}"
|
||||
var_os="${var_os:-debian}"
|
||||
var_version="${var_version:-13}"
|
||||
#var_arm64="${var_arm64:-no}" # unset = ask the user; set yes/no only when verified
|
||||
@@ -27,23 +27,20 @@ function update_script() {
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
|
||||
if [[ ! -f /usr/bin/solidinvoice ]]; then
|
||||
if [[ ! -f /etc/defguard/core.conf ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
|
||||
if check_for_gh_release "solidinvoice" "SolidInvoice/SolidInvoice"; then
|
||||
msg_info "Stopping ${APP} Service"
|
||||
systemctl stop solidinvoice
|
||||
msg_ok "Stopped ${APP} Service"
|
||||
msg_info "Updating ${APP}"
|
||||
$STD apt update
|
||||
$STD apt install -y defguard defguard-proxy
|
||||
msg_ok "Updated ${APP}"
|
||||
|
||||
fetch_and_deploy_gh_release "solidinvoice" "SolidInvoice/SolidInvoice" "singlefile" "latest" "/usr/bin" "solidinvoice-linux-$(arch_resolve)"
|
||||
|
||||
msg_info "Starting ${APP} Service"
|
||||
systemctl start solidinvoice
|
||||
msg_ok "Started ${APP} Service"
|
||||
msg_ok "Updated Successfully"
|
||||
fi
|
||||
msg_info "Restarting Services"
|
||||
systemctl restart defguard defguard-proxy
|
||||
msg_ok "Restarted Services"
|
||||
msg_ok "Updated successfully!"
|
||||
exit
|
||||
}
|
||||
|
||||
@@ -54,4 +51,7 @@ description
|
||||
msg_ok "Completed Successfully!\n"
|
||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
||||
echo -e "${GATEWAY}${BGN}http://${IP}:8765${CL}"
|
||||
echo -e "${GATEWAY}${BGN}http://${IP}:8000${CL}"
|
||||
echo -e "${INFO}${YW}In the setup wizard, enter this as the Edge address:${CL}"
|
||||
echo -e "${TAB}${DEFAULT}${BGN}127.0.0.1:50051${CL}"
|
||||
echo -e "${INFO}${YW}The generated admin password is in /etc/defguard/core.conf${CL}"
|
||||
6
ct/headers/defguard
Normal file
6
ct/headers/defguard
Normal file
@@ -0,0 +1,6 @@
|
||||
____ ____ __
|
||||
/ __ \___ / __/___ ___ ______ __________/ /
|
||||
/ / / / _ \/ /_/ __ `/ / / / __ `/ ___/ __ /
|
||||
/ /_/ / __/ __/ /_/ / /_/ / /_/ / / / /_/ /
|
||||
/_____/\___/_/ \__, /\__,_/\__,_/_/ \__,_/
|
||||
/____/
|
||||
@@ -1,6 +0,0 @@
|
||||
_____ ___ ______ _
|
||||
/ ___/____ / (_)___/ / _/___ _ ______ (_)_______
|
||||
\__ \/ __ \/ / / __ // // __ \ | / / __ \/ / ___/ _ \
|
||||
___/ / /_/ / / / /_/ // // / / / |/ / /_/ / / /__/ __/
|
||||
/____/\____/_/_/\__,_/___/_/ /_/|___/\____/_/\___/\___/
|
||||
|
||||
78
install/defguard-install.sh
Normal file
78
install/defguard-install.sh
Normal file
@@ -0,0 +1,78 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/DefGuard/defguard
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
PG_VERSION="17" setup_postgresql
|
||||
PG_DB_NAME="defguard" PG_DB_USER="defguard" setup_postgresql_db
|
||||
|
||||
setup_deb822_repo \
|
||||
"defguard" \
|
||||
"https://apt.defguard.net/defguard.asc" \
|
||||
"https://apt.defguard.net" \
|
||||
"$(get_os_info codename)" \
|
||||
"release-2.0"
|
||||
|
||||
msg_info "Installing Defguard"
|
||||
$STD apt install -y defguard
|
||||
msg_ok "Installed Defguard"
|
||||
|
||||
msg_info "Configuring Defguard"
|
||||
DEFGUARD_ADMIN_PASSWORD=$(openssl rand -base64 18)
|
||||
cat <<EOF >/etc/defguard/core.conf
|
||||
DEFGUARD_DB_HOST=localhost
|
||||
DEFGUARD_DB_PORT=5432
|
||||
DEFGUARD_DB_NAME=defguard
|
||||
DEFGUARD_DB_USER=defguard
|
||||
DEFGUARD_DB_PASSWORD=${PG_DB_PASS}
|
||||
|
||||
DEFGUARD_URL=http://${LOCAL_IP}:8000
|
||||
DEFGUARD_HTTP_PORT=8000
|
||||
DEFGUARD_GRPC_PORT=50055
|
||||
|
||||
DEFGUARD_DEFAULT_ADMIN_PASSWORD=${DEFGUARD_ADMIN_PASSWORD}
|
||||
DEFGUARD_COOKIE_INSECURE=true
|
||||
DEFGUARD_LOG_LEVEL=info
|
||||
EOF
|
||||
chown root:defguard /etc/defguard/core.conf
|
||||
chmod 640 /etc/defguard/core.conf
|
||||
systemctl restart defguard
|
||||
msg_ok "Configured Defguard"
|
||||
|
||||
msg_info "Installing Defguard Edge"
|
||||
$STD apt install -y defguard-proxy
|
||||
mkdir -p /etc/defguard/certs
|
||||
cat <<EOF >/etc/defguard/proxy.toml
|
||||
# Defguard Edge (proxy) configuration
|
||||
# Apply changes with: systemctl restart defguard-proxy
|
||||
|
||||
# Port the API/enrollment HTTP server listens on
|
||||
http_port = 8080
|
||||
# Port the HTTPS server listens on (used after Core provisions TLS)
|
||||
https_port = 8443
|
||||
# Port the gRPC server listens on. Core connects here to adopt and manage the Edge.
|
||||
grpc_port = 50051
|
||||
# Directory where adoption-provisioned mTLS certificates are stored
|
||||
cert_dir = "/etc/defguard/certs"
|
||||
|
||||
log_level = "info"
|
||||
rate_limit_per_second = 0
|
||||
rate_limit_burst = 0
|
||||
EOF
|
||||
chown -R defguard:defguard /etc/defguard/certs /etc/defguard/proxy.toml
|
||||
systemctl enable -q --now defguard-proxy
|
||||
msg_ok "Installed Defguard Edge"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
@@ -1,190 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: Pierre du Plessis
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/solidinvoice/solidinvoice
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Creating Directories"
|
||||
mkdir -p /etc/solidinvoice /var/lib/solidinvoice
|
||||
msg_ok "Created Directories"
|
||||
|
||||
fetch_and_deploy_gh_release "solidinvoice" "SolidInvoice/SolidInvoice" "singlefile" "latest" "/usr/bin" "solidinvoice-linux-$(arch_resolve)"
|
||||
|
||||
msg_info "Configuring SolidInvoice"
|
||||
cat <<'EOF' >/etc/solidinvoice/solidinvoice.env
|
||||
# SolidInvoice environment configuration
|
||||
# This file is sourced by the systemd service unit.
|
||||
# CLI flags always take precedence over values set here.
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Network
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Port to listen on (default: 8765)
|
||||
#SOLIDINVOICE_PORT=8765
|
||||
|
||||
# IP address to bind to (default: auto-detected outbound IP)
|
||||
#SOLIDINVOICE_SERVER_IP=0.0.0.0
|
||||
|
||||
# Domain name — required when using Let's Encrypt or custom certificates.
|
||||
# When set, the application binds to https://<domain> instead of an IP.
|
||||
#SOLIDINVOICE_DOMAIN=
|
||||
|
||||
# Bind the bundled webserver to every hostname so it answers regardless of the
|
||||
# Host header — required behind a reverse proxy that forwards the original domain.
|
||||
SOLIDINVOICE_DOCKER=true
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# HTTPS / TLS
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Disable HTTPS and serve plain HTTP. Set to 1 when running behind a
|
||||
# reverse proxy (nginx, Caddy, Traefik, etc.) that handles TLS termination.
|
||||
# Remove or set to 0 when you want the application to manage its own certificates.
|
||||
SOLIDINVOICE_DISABLE_HTTPS=1
|
||||
|
||||
# Enable automatic Let's Encrypt certificates (requires SOLIDINVOICE_DOMAIN).
|
||||
# Incompatible with SOLIDINVOICE_DISABLE_HTTPS=1.
|
||||
#SOLIDINVOICE_LETS_ENCRYPT=1
|
||||
|
||||
# Paths to a custom TLS certificate and private key (requires SOLIDINVOICE_DOMAIN).
|
||||
# Incompatible with SOLIDINVOICE_DISABLE_HTTPS=1 and SOLIDINVOICE_LETS_ENCRYPT=1.
|
||||
#SOLIDINVOICE_SSL_CERT=/etc/ssl/certs/solidinvoice.crt
|
||||
#SOLIDINVOICE_SSL_KEY=/etc/ssl/private/solidinvoice.key
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Performance
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Enable FrankenPHP worker mode for improved performance (keeps PHP workers
|
||||
# alive between requests). Recommended for high-traffic deployments.
|
||||
# Set to 1 to enable.
|
||||
#FRANKENPHP_WORKER_MODE=1
|
||||
|
||||
# Number of FrankenPHP worker threads when worker mode is enabled (default: 2).
|
||||
#SOLIDINVOICE_WORKER_THREADS=2
|
||||
|
||||
# Number of background messenger worker processes (default: 1).
|
||||
# Set to 0 to disable built-in workers (use the dedicated 'solidinvoice worker'
|
||||
# command instead).
|
||||
#SOLIDINVOICE_MESSENGER_WORKERS=1
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Application
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Application environment. Change to "dev" only for local development.
|
||||
#SOLIDINVOICE_ENV=prod
|
||||
|
||||
# Enable debug mode (0 or 1). Never enable in production.
|
||||
#SOLIDINVOICE_DEBUG=0
|
||||
|
||||
# Configuration directory — stores generated secrets, OAuth keys, and the
|
||||
# SQLite database (when no external database is configured).
|
||||
SOLIDINVOICE_CONFIG_DIR=/etc/solidinvoice
|
||||
|
||||
# Installation type identifier used for telemetry when opted in.
|
||||
SOLIDINVOICE_INSTALL_TYPE=proxmox-community-scripts
|
||||
|
||||
# Skip the ASCII art / URL summary printed on startup.
|
||||
SOLIDINVOICE_SKIP_INTRO=1
|
||||
|
||||
# Log format: "json" for structured logs (default for systemd), "console" for human-readable.
|
||||
SOLIDINVOICE_LOG_FORMAT=json
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Database
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Database connection URL. Defaults to SQLite stored in SOLIDINVOICE_CONFIG_DIR
|
||||
# when not set. Supported drivers: mysql, postgresql, sqlite.
|
||||
#SOLIDINVOICE_DATABASE_URL=mysql://user:password@127.0.0.1:3306/solidinvoice
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Email
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Outbound mail transport DSN. Overrides the transport configured in the UI.
|
||||
# See https://symfony.com/doc/current/mailer.html for DSN formats.
|
||||
#SOLIDINVOICE_MAILER_DSN=smtp://user:password@localhost:25
|
||||
|
||||
# From address used for all outgoing emails. Overrides the address configured in the UI.
|
||||
#SOLIDINVOICE_MAILER_SENDER=SolidInvoice <noreply@example.com>
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Async messaging
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Messenger transport DSN. Defaults to the database (doctrine) queue.
|
||||
#SOLIDINVOICE_MESSENGER_DSN=doctrine://default?queue_name=async
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Search (optional)
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Meilisearch instance for full-text search. Leave blank to disable.
|
||||
#SOLIDINVOICE_MEILISEARCH_URL=http://localhost:7700
|
||||
#SOLIDINVOICE_MEILISEARCH_API_KEY=
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Localisation
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Default locale for the application interface (e.g. en, fr, de, nl).
|
||||
#SOLIDINVOICE_LOCALE=en
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# User registration
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Allow visitors to create their own accounts (0 = disabled, 1 = enabled).
|
||||
#SOLIDINVOICE_ALLOW_REGISTRATION=0
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Monitoring (optional)
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# Sentry DSN for error and performance monitoring.
|
||||
#SOLIDINVOICE_SENTRY_DSN=
|
||||
|
||||
# Expose a Prometheus metrics endpoint on a dedicated port.
|
||||
#SOLIDINVOICE_ENABLE_METRICS=1
|
||||
#SOLIDINVOICE_METRICS_PORT=9090
|
||||
EOF
|
||||
chmod 640 /etc/solidinvoice/solidinvoice.env
|
||||
msg_ok "Configured SolidInvoice"
|
||||
|
||||
msg_info "Creating Service"
|
||||
cat <<'EOF' >/etc/systemd/system/solidinvoice.service
|
||||
[Unit]
|
||||
Description=SolidInvoice
|
||||
Documentation=https://solidinvoice.co/docs
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=exec
|
||||
User=root
|
||||
WorkingDirectory=/var/lib/solidinvoice
|
||||
ExecStart=/usr/bin/solidinvoice run
|
||||
EnvironmentFile=/etc/solidinvoice/solidinvoice.env
|
||||
Restart=on-failure
|
||||
RestartSec=5
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now solidinvoice
|
||||
msg_ok "Created Service"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
Reference in New Issue
Block a user