I am trying to serve images files only in this location block.
location /image \.(png|jpg)
{
alias /site/;
}
But I keep receiving errors. What is the correct way to serve only png and jpg matching /images.
location /image \.(png|jpg)
{
alias /site/;
}
But I keep receiving errors. What is the correct way to serve only png and jpg matching /images.