diff --git a/nginx/default.conf b/nginx/default.conf index 8d0cf78..9647afc 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -3,6 +3,11 @@ server { server_name localhost; root /usr/share/nginx/html; index index.html index.htm; + + location /images { + root /usr/share/nginx/html/images; + } + location / { try_files $uri $uri/ /index.html; }