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

How to set up Amazon Linux 2023 AMI
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-extras command 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 설정 settings
certbot can be installed using pip .
# 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 nginx
Hope this helps 🙏
reference
Amazon Linux 2023 is GA!




