Installation
Install UNA 15 — hosted, Project deploy, Docker, or the zip and wizard. NEO is a separate client. cd /tmp
wget https://github.com/unacms/UNA/releases/download/15.0.0-RC1/UNA-v.15.0.0-RC1.zip -O una.zip
unzip una.zip
sudo cp -r UNA-v.15.0.0-RC1/* /var/www/your_domain/
sudo apt-get update
sudo apt-get install apache2 mariadb-server \
php php-cli php-curl php-gd php-mbstring php-fileinfo php-zip php-mysql php-xml php-intl php-exif \
certbot python3-certbot-apache unzip wget
sudo a2enmod rewrite
sudo mysql -u root -p
CREATE DATABASE una_database;
CREATE USER 'una_user'@'localhost' IDENTIFIED BY 'your_password';
GRANT ALL ON una_database.* TO 'una_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;
3d