React + API Server Project Development and Deployment (CI/CD)
Create a React development environment, the hallmark of SPAs, and automatically generate API documentation through a Node.js-based API Server and Swagger. Understand the differences between local development environments and development servers, and easily follow along to use AWS. Course materials: https://bit.ly/okreactapi
News
2 articles
Hello. The AWS screen has changed, so I have updated the video on creating an instance separately.
https://www.youtube.com/watch?v=OqnGEQnMbVI&t=92s
At the beginning of the video installing PostgreSQL, we create an EC2 instance.
This is the version using Amazon Linux 2023 (AL2023) AMI, and I will share the video of the source code running here after testing.
Hello. Thank you for listening to the lecture.
First of all, I'll share it quickly.
Since the release of
Amazon Linux 2023 (AL2023)on 2023/03/15 this year, the commands for configuring nginx and HTTPS have changed.The
amazon-linux-extrascommand that was present in Amazon Linux 2 (AL2) has been removed, so the nginx installation changes as follows:# sudo amazon-linux-extras install nginx1 #AL2 sudo yum install nginxAnd the part that has changed the most is this:
04. 도메인 등록과 HTTPS 설정settingscertbotcan be installed usingpip.# Amazon Linux 2023 sudo su - dnf install python3 augeas-libs dnf remove certbot python3 -m venv /opt/certbot/ /opt/certbot/bin/pip install --upgrade pip /opt/certbot/bin/pip install certbot certbot-nginx ln -s /opt/certbot/bin/certbot /usr/bin/certbot certbot --nginx systemctl restart nginxThe existing
Amazon Linux 2 (AL2)is as follows:# Amazon Linux 2 sudo su - yum -y install yum-utils yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install certbot python2-certbot-nginx certbot --nginx systemctl restart nginxHope this helps 🙏
reference
Amazon Linux 2023 is GA!


