How to Install Ghost on Ubuntu 22.04
Ghost is a modern, professional publishing platform designed for bloggers and writers.
Host your Ghost blog on a fast VPS-SERVER HOST server.
Complete Installation Script
#!/bin/bash
# Ghost-CLI Installer for Ubuntu 22.04
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
apt-get install -y nodejs nginx mysql-server
npm install ghost-cli@latest -g
# After this, run 'ghost install' in your web directory as a non-root user.
Copy