diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-11-03 13:19:52 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-11-03 13:19:52 +0000 |
commit | 29c724d2a7764f83fe846b418d09540348b86983 (patch) | |
tree | dafaff8e37ba51355b22b6f38d856ae49e145006 /src/template | |
parent | b303961f38c9b578f30248ee364ed4e5ffdcd06c (diff) |
implementing #1747
Diffstat (limited to 'src/template')
-rw-r--r-- | src/template/Makefile.am | 5 | ||||
-rw-r--r-- | src/template/template.conf | 21 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/template/Makefile.am b/src/template/Makefile.am index 35a4b433e8..1769191e7a 100644 --- a/src/template/Makefile.am +++ b/src/template/Makefile.am @@ -1,5 +1,10 @@ INCLUDES = -I$(top_srcdir)/src/include +pkgcfgdir= $(pkgdatadir)/config.d/ + +dist_pkgcfg_DATA = \ + template.conf + if MINGW WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols endif diff --git a/src/template/template.conf b/src/template/template.conf new file mode 100644 index 0000000000..522721fb67 --- /dev/null +++ b/src/template/template.conf @@ -0,0 +1,21 @@ +[template] +AUTOSTART = NO +PORT = 9999 +HOSTNAME = localhost +HOME = $SERVICEHOME +CONFIG = $DEFAULTCONFIG +BINARY = gnunet-service-template +ACCEPT_FROM = 127.0.0.1; +ACCEPT_FROM6 = ::1; +UNIXPATH = /tmp/gnunet-service-template.sock +UNIX_MATCH_UID = YES +UNIX_MATCH_GID = YES +# DISABLE_SOCKET_FORWARDING = NO +# USERNAME = +# MAXBUF = +# TIMEOUT = +# DISABLEV6 = +# BINDTO = +# REJECT_FROM = +# REJECT_FROM6 = +# PREFIX = |