diff options
author | dweller <dweller@cabin.digital> | 2024-03-12 00:29:30 +0200 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-03-12 00:29:30 +0200 |
commit | 867c582eb42ec8f28c1a5012d43b615df1ef75e1 (patch) | |
tree | b1b521eab7dbc213596929b87e9062ea0a4dc9b2 /common.php | |
parent | 058b1805192ea1fd8f0bbd98b2c75aea69decac1 (diff) |
separate deploy-related configs from common.php
Diffstat (limited to '')
-rw-r--r-- | common.php | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,8 +8,11 @@ $root = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST']; - $manbin = "/home/dwlr/nfs_red/deb_man/mandoc/bin/man"; - $manpath = "/home/dwlr/nfs_red/deb_man/mans/bookworm/man"; + require "config.php"; + + if(empty($manbin) || empty($manpath)) + exit("ERROR: Unconfigured backend!"); + require "$manpath/archs.php"; $action = trim($_GET['action'] ?? null); |