Serve images as static files

Ensure images are served as static files when using Nginx
This commit is contained in:
rzimin
2015-03-12 13:34:46 +03:00
parent a029f89ad2
commit 08a8d69be2

View File

@@ -25,6 +25,10 @@ http {
index index.php;
if (!-e $request_filename){ rewrite ^(.*)$ /index.php last; }
}
location /images/ {
# Serve images as static
}
location /user {
rewrite ^/user/accounts/(.*)$ /error redirect;