dnf install -y nginx
systemctl enable --now nginx
vim /etc/nginx/nginx.conf

server_name은 apache가 설치된 EC2의 Public IP를 의미한다.
location에 proxy_pass는 Application의 URL을 작성한다.

server_name은 apache가 설치된 EC2의 Public IP를 의미한다. location에 proxy_pass는 Application의 URL을 작성한다.

systemctl restart nginx

localhost