Answers for "static content nginx"

0

static content nginx

server {
    root /www/data;

    location / {
    }

    location /images/ {
    }

    location ~ \.(mp3|mp4) {
        root /www/media;
    }
}
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language