diff --git a/.gitignore b/.gitignore index d3359b3..2731149 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ sqlite3.so assets.h cert +*.db diff --git a/conf/build.conf.bck b/conf/build.conf.bck deleted file mode 100644 index cc66c28..0000000 --- a/conf/build.conf.bck +++ /dev/null @@ -1,35 +0,0 @@ -# sqlite3 build config -# You can switch flavors using: kodev flavor [newflavor] - -# Set to yes if you wish to produce a single binary instead -# of a dynamic library. If you set this to yes you must also -# set kore_source together with kore_flavor. -#single_binary=no -#kore_source=/home/joris/src/kore -#kore_flavor= - -# The flags below are shared between flavors -cflags=-Wall -Wmissing-declarations -Wshadow -cflags=-Wstrict-prototypes -Wmissing-prototypes -cflags=-Wpointer-arith -Wcast-qual -Wsign-compare -ldflags=-lsqlite3 -ldflags=-L/usr/lib -cxxflags=-Wall -Wmissing-declarations -Wshadow -cxxflags=-Wpointer-arith -Wcast-qual -Wsign-compare - -# Mime types for assets served via the builtin asset_serve_* -#mime_add=txt:text/plain; charset=utf-8 -#mime_add=png:image/png -#mime_add=html:text/html; charset=utf-8 - -dev { - # These flags are added to the shared ones when - # you build the "dev" flavor. - cflags=-g - cxxflags=-g -} - -#prod { -# You can specify additional flags here which are only -# included if you build with the "prod" flavor. -#} diff --git a/conf/sqlite3.conf b/conf/portal_user.conf similarity index 97% rename from conf/sqlite3.conf rename to conf/portal_user.conf index d3bf60c..847850b 100644 --- a/conf/sqlite3.conf +++ b/conf/portal_user.conf @@ -5,7 +5,7 @@ server notls { tls no } -load ./sqlite3.so init +load ./portal_user.so init http_body_max 1024000000 http_body_disk_offload 1024000 diff --git a/portal_user.so b/portal_user.so new file mode 100755 index 0000000..d5ef4d1 Binary files /dev/null and b/portal_user.so differ