You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
357 B
Plaintext
12 lines
357 B
Plaintext
5 years ago
|
#!/usr/bin/env bash
|
||
|
cd "$(dirname "$(realpath "$0")")";
|
||
|
ROOT="$(realpath "$PWD/..")"
|
||
|
./gophor -port 1070 \
|
||
|
-file-remap "$(cat "${ROOT}/config/gopher-rewrite-map")" \
|
||
|
-log-output file \
|
||
|
-system-log "${ROOT}/logs/system.log" \
|
||
|
-access-log "${ROOT}/logs/access.log" \
|
||
|
-hostname localhost \
|
||
|
-root "${ROOT}/root" \
|
||
|
-http-compat-cgi \
|