# Nginx 설치 및 설정 and SSL HTTPS 설정하기## PH2025-08-01 : First posting.## TOC## Nginx 설치 및 설정```[.lang-sh]sudo apt updatesudo apt install nginxsudo systemctl start nginxsudo systemctl enable nginxsudo ufw app listsudo ufw allow 'Nginx HTTP'sudo ufw allow 'Nginx HTTPS'sudo ufw allow sshsudo ufw enablesudo ufw statussudo ufw status verbose```/### Recoeve.net 의 nginx.conf 파일```[.lang-sh.scrollable]sudo ..