Skip to content

Commit 3cc6b59

Browse files
committed
Updated link to Referentiebestand; logging nginx
1 parent 7fcca16 commit 3cc6b59

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Note: the output can change when a different version of Alpino or Frog is used.
121121

122122
[Word prevalence values](http://crr.ugent.be/programs-data/word-prevalence-values) (in `data/prevalence_nl.data` and `data/prevalence_be.data`) courtesy of Keuleers et al., Center for Reading Research, Ghent University.
123123

124-
Certain parts of T-Scan use data from [Referentiebestand Nederlands](http://tst.inl.nl/producten/rbn/), which we can not distribute due to restrictive licensing issues, so this functionality will not be available.
124+
Certain parts of T-Scan use data from [Referentiebestand Nederlands](https://taalmaterialen.ivdnt.org/download/tstc-referentiebestand-nederlands/), which we can not distribute due to restrictive licensing issues, so this functionality will not be available.
125125

126126
Certain other data is too large for GitHub, but will be downloaded for you automatically by the ``./downloaddata.sh`` script.
127127

docker/deployment/runit.d/nginx.run.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# This script is meant to be invoked via runit (installed in /etc/service/nginx/run), not directly
44

55
mkdir -p ${LOGDIR=/var/log}/nginx
6-
LOGFILE=${LOGDIR=/var/log}/nginx/access.log
7-
touch $LOGFILE
8-
nginx -g "daemon off; error_log $LOGFILE info;"
6+
LOGFILE_ACCESS=${LOGDIR=/var/log}/nginx/access.log
7+
LOGFILE_ERROR=${LOGDIR=/var/log}/nginx/error.log
8+
touch $LOGFILE_ACCESS
9+
touch $LOGFILE_ERROR
10+
nginx -g "daemon off; error_log $LOGFILE_ERROR info;"

0 commit comments

Comments
 (0)