AWS Elastic Beanstalk 에서 static files 설정하는 방법
.config 파일에 아래와 같이 staticfiles 네임스페이스를 추가한다
option_settings:
aws:elasticbeanstalk:container:python:
WSGIPath: prj1.wsgi:application
aws:elasticbeanstalk:environment:proxy:staticfiles:
/static: static
배포 후 인스턴스에서 확인해보면
/etc/nginx/conf.d/elasticbeanstalk 위치에
00_application.conf 밖에 없었는데
01_static.conf 파일이 추가되어있으며,
내용은 이렇다.
location /static {
alias /var/app/current/static;
access_log off;
}
콘솔의 configuration 메뉴에 안 보이던
Static files 구성이 생겨있다!
댓글 없음:
댓글 쓰기