house/config/common.pr

22 lines
468 B
Plaintext
Raw Normal View History

2023-01-05 10:26:06 +00:00
; Start the server with
;
; syndicate-server -c ./config
;
;---------------------------------------------------------------------------
2023-01-31 16:56:27 +00:00
; Create the main dataspace:
2023-01-05 10:26:06 +00:00
let ?ds = dataspace
2023-01-05 14:47:27 +00:00
<MainDataspace $ds>
2023-01-31 16:56:27 +00:00
; Expose the main dataspace directly on port 9001:
<require-service <relay-listener <tcp "0.0.0.0" 9001> $ds>>
2023-01-05 10:26:06 +00:00
2023-01-10 14:09:19 +00:00
$ds ?? <log ?ts ?detail> [
$log ! <log $ts $detail>
]
2023-01-05 10:26:06 +00:00
? <nginx-command ?command> [
<require-service <daemon nginx>>
<daemon nginx $command>
]