repo-ng: New package
diff --git a/repo-ng/debian/repo-ng.conf b/repo-ng/debian/repo-ng.conf
new file mode 100644
index 0000000..babd882
--- /dev/null
+++ b/repo-ng/debian/repo-ng.conf
@@ -0,0 +1,37 @@
+repo
+{
+ ; Section defining list of Data prefixes to register
+ ; Only 'prefix' option is allowed here, which can be repeated multiple times
+ data
+ {
+ prefix "ndn:/localhost/repo-ng"
+ }
+
+ ; Section defining list of command prefixes (to insert or delete Data) to register.
+ ; Only 'prefix' option is allowed here, which can be repeated multiple times
+ command
+ {
+ prefix "ndn:/localhost/repo-ng"
+ }
+
+ ; Section to specify where data should be stored
+ ; Right now only a single 'sqlite' option is allowed:
+ storage
+ {
+ method "sqlite" ; Currently, only sqlite storage engine is supported
+ path "/var/lib/ndn/repo-ng" ; path to repo-ng storage folder
+ }
+
+ ; Section to enable TCP bulk insert capability
+ ; If section is present, then TCP bulk insert is enabled (empty section enables
+ ; TCP bulk insert to listen on "localhost:7376")
+ tcp_bulk_insert {
+ ; host "localhost" ; Set to listen on different IP address or hostname
+ ; port 7376 ; Set to listen on different port number
+ }
+
+ validator
+ {
+ policy "not implemented yet"
+ }
+}