nginx 설치 sudo apt install nginx 설정파일 (sites-available) ubuntu@ip...:~$ cd /etc/nginx/sites-available/ ubuntu@ip...:/etc/nginx/sites-available$ sudo vi myproject myproject server { listen 80; server_name 3.35.xxx.xx; location = /favicon.ico { access_log off; log_not_found off; } location /static { alias /home/ubuntu/projects/myproject/pybo/static; } location / { include proxy_params; proxy_pass h..