diff options
author | Munyoki Kilyungi | 2025-04-22 14:19:17 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-04-22 14:19:17 +0300 |
commit | c748aea1d4518a2f22244eed456dfb222b80c36d (patch) | |
tree | d3e636eef87c4de864f77b111d4afc6ac32409ab | |
parent | 20ad04aaabcb3984a0ab207d633c1093f8993126 (diff) | |
download | gn-machines-c748aea1d4518a2f22244eed456dfb222b80c36d.tar.gz |
Fix virtuoso's `dirs-allowed` to use a list instead of a string.
-rw-r--r-- | genenetwork-local-container.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/genenetwork-local-container.scm b/genenetwork-local-container.scm index d07ee25..014c702 100644 --- a/genenetwork-local-container.scm +++ b/genenetwork-local-container.scm @@ -490,7 +490,7 @@ described by CONFIG, a <genenetwork-configuration> object." (virtuoso-configuration (server-port 7081) (http-server-port 7082) - (dirs-allowed "/var/lib/virtuoso/data") + (dirs-allowed (list "/var/lib/virtuoso/data")) (database-file "/var/lib/virtuoso/genenetwork-virtuoso.db") (transaction-file "/var/lib/virtuoso/genenetwork-virtuoso.trx"))) (service redis-service-type |