scp (키가 있는 경우: -i "key.pem") -r images ${username}@x.x.x.x:원격지 경로
cd /etc/nginx/sites-available
에 있는 conf 파일을 수정해야 한다.server {
listen 80;
server_name ...;
location / {
root /home/...;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /images {
alias /home/ssm-user/images;
}
}
sudo ln -s /etc/nginx/sites-available/xxx.conf /etc/nginx/sites-enabled/
입력하게 되면 sites-enabled 폴더에sudo service nginx restart
명령어를 통해 Nginx 서버 재시작<img src="https://.../images/reload.png" />
https://myjamong.tistory.com/35
https://velog.io/@jeff0720/2018-11-18-2111-%EC%9E%91%EC%84%B1%EB%90%A8-iojomvsf0n