Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 2.66 KB

File metadata and controls

56 lines (41 loc) · 2.66 KB

Paymenter Auto-Installer 🚀

A fast and automated bash script to easily install Paymenter on Ubuntu 24.04. This script handles dependencies, database creation, Nginx web server configuration, and automatic Let's Encrypt SSL generation.

Features

  • 📦 Installs all required dependencies (PHP 8.3, MariaDB, Nginx, Redis).
  • 🗄️ Automatically generates and configures the MySQL database.
  • 🌐 Sets up Nginx for your specific domain.
  • 🔒 Secures your site with a free SSL certificate via Certbot.
  • ⚙️ Configures the necessary cronjob and queue worker service.

Prerequisites

  1. A clean installation of Ubuntu 24.04.
  2. Root access (or sudo privileges) to the server.
  3. Cloudflare / DNS: Create an A record in your DNS settings pointing your (sub)domain to your server's IP address. Make sure the DNS has propagated before running the script.

Installation

1. Start the Script

Run the following command in your server's terminal. This will download and execute the installation script directly:

bash <(curl -s https://gist.githubusercontent.com/joopdev/0568fc208c98ff1edd5bcb6414903ada/raw)

2. Follow the Prompts

During the installation, the script will pause a few times to ask for your input:

  1. Domain: Enter the exact domain or subdomain you want to use for Paymenter (e.g., billing.yourdomain.com).
  2. Database Password: The script automatically creates the database, but you need to invent a strong password. Type it in and save it.
  3. SSL Certificate: The script triggers Certbot. When asked to activate HTTPS/SSL, press Y.
  4. Email Address: Enter an email address you actually check (used for urgent SSL renewal notices).
  5. Terms of Service: Type Y to agree to the Let's Encrypt Terms of Service.
  6. EFF Mailing List: Type N when asked to share your email with the EFF, unless you really want their newsletters.
  7. Root Warning: If any part of the process warns you about running as root, simply type yes to continue.

Post-Installation

Once the script finishes successfully, you just need to set up your Paymenter admin account and initial settings. Run these final two commands manually:

Initialize the app:

cd /var/www/paymenter && php artisan app:init

Create your Admin user:

cd /var/www/paymenter && php artisan app:user:create

⚠️ Important Backup Notice

At the end of the script, it will display your newly generated APP_KEY. Back this up somewhere safe! It is used to encrypt all data (like user passwords) in the database. If you lose it, all encrypted data is irrecoverable, even if you have database backups.