diff --git a/nginx/default.conf b/nginx/default.conf index ecad836..061151e 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -4,6 +4,10 @@ server { root /usr/share/nginx/html; index index.html index.htm; + location /images { + root /usr/share/nginx/html; + } + location / { try_files $uri $uri/ /index.html; }