]> Untitled Git - web-gallery.git/blob - server/nginx.conf
63aacef8f5763adbaa2fcf7bcf4b839b2476e6fa
[web-gallery.git] / server / 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://navigator:5000;
11         }
12
13         location /images {
14             root /data;
15         }
16     }
17 }