alias(nginx)
指定された場所の代替を定義する
code: .txt
Syntax: alias path;
Default: —
Context: location
Defines a replacement for the specified location. For example, with the following configuration
code: nginx
location /i/ {
alias /data/w3/images/;
}
on request of /i/top.gif, the file /data/w3/images/top.gif will be sent.