]> Untitled Git - web-gallery.git/blob - nginx.conf
cff3e3b83a5ab830e001c0d1f53909c84477435a
[web-gallery.git] / nginx.conf
1 worker_processes auto;
2
3 events {
4     worker_connections 1024;
5 }
6
7 http {
8     server {
9         location / {
10             proxy_pass http://gallery:5000;
11         }
12
13         location /images {
14             root /data;
15         }
16     }
17 }