Connect to your EC2 instance via SSH:
ssh -i your-key.pem ubuntu@your-ec2-ip
Create the required folders:
mkdir -p /home/ubuntu/rise_db /home/ubuntu/rise_public_site
/home/ubuntu/letsencrypt
Use an SFTP client (e.g., FileZilla) to upload the RISE CRM files to:
/home/ubuntu/rise_public_site
Run the following commands on the EC2 instance:
sudo apt updatesudo apt upgradesudo apt install docker.io -ysudo systemctl start dockersudo systemctl enable dockersudo usermod -aG docker $USERsudo apt install docker-compose -ysudo apt install docker-buildx
Create a file /home/ubuntu/ssl/docker-compose.yml
Review following content and change your domain name and other configs:
version: '3.8'services:nginx:image: nginx:latestcontainer_name: rise_nginxrestart: alwaysports:- "80:80"- "443:443"volumes:- ./certbot/www:/var/www/certbot- ./certbot/conf:/etc/letsencryptnetworks:- rise_networkcommand: >/bin/sh -c "echo 'server {listen 80;server_name yourdomain.com;location /.well-known/acme-challenge/ {root /var/www/certbot;}location / {return 404;}}' > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"certbot:image: certbot/certbotcontainer_name: certbotvolumes:- ./certbot/www:/var/www/certbot- ./certbot/conf:/etc/letsencryptentrypoint: "/bin/sh -c 'certbot certonly --webroot -w /var/www/certbot --email your-email@example.com -d yourdomain.com --agree-tos --no-eff-email && exit 0'"depends_on:- nginxnetworks:- rise_networknetworks:rise_network:
cd /home/ubuntu/ssl && docker-compose up --build
cd /home/ubuntu/ssl && docker-compose down
Navigate to the RISE CRM directory:
cd /home/ubuntu/rise_public_site
Create a docker
folder inside this directory:
mkdir docker && cd docker
Add following files on the folder. Please review the content first and remember to change the domain name and other things based on your site.
-/docker/docker-compose.yml
version: '3.9'
services:rise_php:build:context: .dockerfile: ./dockerfile-phpcontainer_name: rise_phprestart: alwaysvolumes:- ../app:/var/www/html/app- ../assets:/var/www/html/assets- ../files:/var/www/html/files- ../plugins:/var/www/html/plugins- ../system:/var/www/html/system- ../updates:/var/www/html/updates- ../writable:/var/www/html/writable- ../index.php:/var/www/html/index.phplogging:driver: "json-file"options:max-size: "10m"max-file: "3"networks:- rise_proxy_network
rise_nginx:image: nginx:latestcontainer_name: rise_nginxrestart: alwaysvolumes:- ../assets:/var/www/html/assets- ../files:/var/www/html/files- ../updates:/var/www/html/updates- ../writable:/var/www/html/writable- ../install:/var/www/html/install- ../plugins:/var/www/html/plugins- ../index.php:/var/www/html/index.php- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf- ./nginx/entrypoint:/docker-entrypoint.d- ../certbot/www:/var/www/certbot- /home/ubuntu/letsencrypt/rise:/etc/letsencryptlogging:driver: "json-file"options:max-size: "10m"max-file: "3"depends_on:- rise_phpports:- "80:80"- "443:443"networks:- rise_proxy_network
rise_mysql:image: mysql:8.0restart: alwayscontainer_name: rise_mysqlvolumes:- /home/ubuntu/rise_db:/var/lib/mysqlenvironment:MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
logging:driver: "json-file"options:max-size: "10m"max-file: "3"ports:- "3306:3306"networks:- rise_proxy_network
networks:
rise_proxy_network:name: rise_proxy_networkdriver: bridgeexternal: true
- docker/dockerfile-php
# Add PHP-FPM base imageFROM php:8.2-fpm# Install required extensionsRUN docker-php-ext-install mysqli pdo pdo_mysql# Install GD extensionRUN apt-get update && apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev && docker-php-ext-configure gd --with-freetype --with-jpeg && docker-php-ext-install -j$(nproc) gd# Install Intl extensionRUN apt-get install -y libicu-dev && docker-php-ext-install intl# Install ZipArchive extensionRUN apt-get install -y libzip-dev && docker-php-ext-install zip# Install IMAP extensionRUN apt-get install -y libc-client-dev libkrb5-dev && docker-php-ext-configure imap --with-kerberos --with-imap-ssl && docker-php-ext-install imap# Copy PHP configuration fileCOPY php.ini /usr/local/etc/php/conf.d/site_php.ini
- docker/nginx/nginx.conf
To find more about nginx configuration, please check this doc.
server {listen 80;server_name yourdomain.com;client_max_body_size 200M;location ~ /.well-known/acme-challenge/ {
root /var/www/certbot;}root /var/www/html;
# Redirect HTTP to HTTPSreturn 301 https://$host$request_uri;}server {listen 443 ssl;server_name yourdomain.com;client_max_body_size 200M;
# Block access to sensitive directorieslocation /app {deny all;}location /system {deny all;}location /writable {deny all;}
# SSL certificatesssl_certificate /etc/letsencrypt/rise/live/yourdomain.com/fullchain.pem;ssl_certificate_key /etc/letsencrypt/rise/live/yourdomain.com/privkey.pem;location / {proxy_pass http://rise_nginx;proxy_set_header Host $host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header X-Forwarded-Proto $scheme;# Prevent direct access to the backendproxy_hide_header X-Powered-By;proxy_redirect off;}}
-/docker/nginx/entrypoint/entrypoint.sh
#!/bin/bash
set -e
sleep 5
echo "Running nginx post-startup script."
chown -R www-data:www-data /var/www/html
chmod -R 755 /var/www/html
# Execute CMD from Dockerfile
exec "$@"
-/docker/php.ini
upload_max_filesize = 200M
post_max_size = 200M
-/docker/.env
MYSQL_ROOT_PASSWORD: set_root_password
MYSQL_DATABASE: set_db_name
MYSQL_USER: set_db_user
MYSQL_PASSWORD: set_db_password
cd /home/ubuntu/rise_public_site/docker && docker-compose up --build
Open a web browser and visit:
http://yourdomain.com
Follow the on-screen instructions to complete the installation.
Enter database and admin credentials when prompted.
RISE CRM should now be successfully installed on your AWS EC2 instance.