Commit 6bb41447 authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible Debian: configure nginx to serve lynxis' rebuilder-snapshot

parent af6de23d
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -30,5 +30,18 @@ http {
            alias       /srv/data/vagrant/snapshots;
            autoindex   on;
        }

location /rebuilder-snapshot/api {
	rewrite     	/rebuilder-snapshot/api/(.+) /$1 break;
	proxy_pass  	http://127.0.0.1:5001;
	include		proxy_params;
}

location 		/rebuilder-snapshot/storage {
	alias		/srv/data/lynxis/repro-debian/storage;
	autoindex	on;
}


    }
}