Hallo,
I want to use a folder like this
http://123.45.678.9/photos/blabla.jpg
I have a default vhost to catch all
server {
listen 80 default;
server_name _;
location / {
root html;
index index.html index.htm;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
How can I make this to show the pictures in the browser?
Varix
Posted at Nginx Forum: