Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix (config): add missing changes #173

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions config/sipi.knora-config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ sipi = {
--
prefix_as_path = true,

--
-- In order not to accumulate to many files into one diretory (which slows down file
-- access considerabely), the images are stored in recursive subdirectories 'A'-'Z'.
-- If subdir_levels is equal 0, no subdirectories are used. The maximum is 6.
-- The recommandeation is that on average there should not me more than a few
-- thousand files in a unix directory (your mileage may vay depending on the
-- file system used).
--
subdir_levels = 1,

--
-- Lua script which is executed on initialization of the Lua interpreter
--
Expand Down Expand Up @@ -113,7 +123,14 @@ sipi = {


fileserver = {
--
-- directory where the documents for the normal webserver are located
--
docroot = './server',

--
-- route under which the normal webserver shouöd respond to requests
--
wwwroute = '/server'
}

Expand Down
19 changes: 18 additions & 1 deletion config/sipi.knora-docker-config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ sipi = {
--
prefix_as_path = true,

--
-- In order not to accumulate to many files into one diretory (which slows down file
-- access considerabely), the images are stored in recursive subdirectories 'A'-'Z'.
-- If subdir_levels is equal 0, no subdirectories are used. The maximum is 6.
-- The recommandeation is that on average there should not me more than a few
-- thousand files in a unix directory (your mileage may vay depending on the
-- file system used).
--
subdir_levels = 1,

--
-- Lua script which is executed on initialization of the Lua interpreter
--
Expand Down Expand Up @@ -113,8 +123,15 @@ sipi = {


fileserver = {
--
-- directory where the documents for the normal webserver are located
--
docroot = '/sipi/server',
docroute = '/server'

--
-- route under which the normal webserver shouöd respond to requests
--
wwwroute = '/server'
}

--
Expand Down
19 changes: 18 additions & 1 deletion config/sipi.knora-test-config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ sipi = {
--
prefix_as_path = true,

--
-- In order not to accumulate to many files into one diretory (which slows down file
-- access considerabely), the images are stored in recursive subdirectories 'A'-'Z'.
-- If subdir_levels is equal 0, no subdirectories are used. The maximum is 6.
-- The recommandeation is that on average there should not me more than a few
-- thousand files in a unix directory (your mileage may vay depending on the
-- file system used).
--
subdir_levels = 1,

--
-- Lua script which is executed on initialization of the Lua interpreter
--
Expand Down Expand Up @@ -143,8 +153,15 @@ sipi = {
}

fileserver = {
--
-- directory where the documents for the normal webserver are located
--
docroot = './server',
docroute = '/server'

--
-- route under which the normal webserver shouöd respond to requests
--
wwwroute = '/server'
}

--
Expand Down
21 changes: 20 additions & 1 deletion config/sipi.knora-test-docker-config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,18 @@ sipi = {
--
knora_path = 'webapihost',


--
-- In order not to accumulate to many files into one diretory (which slows down file
-- access considerabely), the images are stored in recursive subdirectories 'A'-'Z'.
-- If subdir_levels is equal 0, no subdirectories are used. The maximum is 6.
-- The recommandeation is that on average there should not me more than a few
-- thousand files in a unix directory (your mileage may vay depending on the
-- file system used).
--
subdir_levels = 1,


--
-- Port of Knora Application
--
Expand Down Expand Up @@ -143,8 +155,15 @@ sipi = {
}

fileserver = {
--
-- directory where the documents for the normal webserver are located
--
docroot = '/sipi/server',
docroute = '/server'

--
-- route under which the normal webserver shouöd respond to requests
--
wwwroute = '/server'
}

--
Expand Down
5 changes: 5 additions & 0 deletions config/sipi.no-knora-test-config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ sipi = {
loglevel = "TRACE",
}

fileserver = {
docroot = './server',
wwwroute = '/server'
}

--
-- here we define routes that are handled by lua scripts. A route is a defined url:
-- http://<server-DNS>/<route>
Expand Down