NGINX Static Files
5 years ago by PastaLord in NGINX
server {
root /www/data;
location / {
}
location /images/ {
}
location ~ \.(mp3|mp4) {
root /www/media;
}
}