Be sure to use the desired region.
Create an SSH key pair and upload to AWS before generating an EC2. Use this key whe setting up your EC2.
sudo apt update
sudo apt install apache2
sudo systemctl start apache2
sudo systemctl enable apache2
sudo a2enmod proxy_http
sudo systemctl restart apache2
Modify files in /etc/apache2/sites-available accordingly and enable and restart, if necessary:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/<domain>.conf
sudo rm -R /var/www/html
Example File:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName <domain>
ServerAlias <subdomain>.<domain>
DocumentRoot /var/www/<project>
...
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
</VirtualHost>
sudo a2dissite 000-default
sudo a2ensite <domain>
sudo systemctl reload apache2
Make sure to add the elastic IP address to the DNS records so the app resolves before completing the next steps.
sudo apt-get install certbot python3-certbot-apache
sudo certbot --apache
sudo apt install nodejs
sudo apt install npm
sudo npm install pm2 -g
ssh-keygen
Add your public key to GitLab through the Console.
sudo chown -R $USER /var/www
git clone git@gitlab.com:<something>/<something>.git
git fetch
git checkout <branch>
git pull
Add your variables with:
sudo nano .env
Inside the project run
npm install
npm run build
pm2 start npm --name <project> -- run start -- -p 3000
Do not use sudo when cloning your project.
Pull, install, and:
pm2 restart <project>