나는 nginx conf를 다음과 같이 가지고 있습니다
location /static/ {
alias $HOME/code/python/vlists/vlists/static/;
# if asset versioning is used
if ($query_string) {
expires max;
}
}
환경에서 $HOME을 전달하고 싶기 때문에 이렇게 합니다.
$ sudo -E nginx
nginx: [emerg] unknown "home" variable
$HOME
가 에서 올바르게 대체되는지 어떻게 확인합니까 nginx.conf
?