From 4afec792c4e7b4f9596443d83f7d43c86ceeb20d Mon Sep 17 00:00:00 2001 From: throwaway Date: Fri, 22 Mar 2024 00:34:50 -0700 Subject: update php and improve docker docs --- docs/docker.md | 131 +++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 114 insertions(+), 17 deletions(-) (limited to 'docs/docker.md') diff --git a/docs/docker.md b/docs/docker.md index 2aabd9f..2507bcf 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -1,33 +1,84 @@ -# Install guide for Docker +#### Install guide for Docker + +When using docker container any environment variables prefixed with `FOURGET_` will be added to the generated config located at `/var/www/html/4get/data/config.php` + +#### Special environment variables + +| Name | value | Example | +| - | - | - | +| FOURGET_PROTO | "http" or "https" | "https" | +| FOURGET_INSTANCES | comma separated string of urls | "https://4get.ca,https://domain.tld" | + +#### Important directories + +| Mountpoint | Description | +| - | - | +| /etc/4get/certs | SSL certificate directory | +| /var/www/html/4get/banner | Custom Banners directory | +| /var/www/html/4get/data/captcha | Captcha dataset | + + +the certificate directory `/etc/4get/certs` expects files named `fullchain.pem` and `privkey.pem` + +The captcha dataset should have a subdirectory for each category. In each category, images should be named from 1.png to X.png, and be 100x100 in size. + +example directory structure: ``` -docker run -d -p 80:80 -e FOURGET_SERVER_NAME="4get.ca" luuul/4get:latest +captcha/ + birds/ + 1.png + 2.png + 3.png + anime/ + 1.png + 2.png ``` -...Or with SSL: +For more information on configuration view [data/config.php](../data/config.php) + +#### Usage + +You can start 4get with + ``` -docker run -d -p 443:443 -v /etc/letsencrypt/live/domain.tld:/etc/4get/certs -e FOURGET_SERVER_NAME="4get.ca" luuul/4get:latest +docker run -d -p 80:80 -e FOURGET_SERVER_NAME="4get.ca" -e FOURGET_PROTO="http" luuul/4get:latest ``` -if the certificate files are not mounted to /etc/4get/certs the service listens to port 80 +...Or with SSL: -the certificate directory expects files named `fullchain.pem` and `privkey.pem` +``` +docker run -d -p 443:443 -e FOURGET_SERVER_NAME="4get.ca" -e FOURGET_PROTO="https" -v /etc/letsencrypt/live/domain.tld:/etc/4get/certs luuul/4get:latest +``` -# Install using Docker Compose -copy `docker-compose.yaml` +#### With Docker Compose -to serve custom banners create a directory named `banners` for example with images and mount to `/var/www/html/4get/banner` +Replace relevant values and start with `docker compose up -d` -to serve captcha images create a directory named `captchas` for example containing subfolders with images and mount to `/var/www/html/4get/data/captcha` +##### HTTP -any environment variables prefixed with `FOURGET_` will be added to the generated config +``` +# docker-compose.yaml +version: "3.7" + +services: + fourget: + image: luuul/4get:latest + restart: always + environment: + - FOURGET_VERSION=6 + - FOURGET_PROTO=http + - FOURGET_SERVER_NAME=4get.ca -the entrypoint will automatically set the `CAPTCHA_DATASET` value for you based on directory names and number of files in each + ports: + - "80:80" +``` -to set `INSTANCES` pass a comma separated string of urls (FOURGET_INSTANCES = "https://4get.ca,https://domain.tld") +##### HTTPS ``` +# docker-compose.yaml version: "3.7" services: @@ -35,16 +86,62 @@ services: image: luuul/4get:latest restart: always environment: + - FOURGET_VERSION=6 + - FOURGET_PROTO=https - FOURGET_SERVER_NAME=4get.ca ports: - "80:80" - "443:443" - + volumes: - /etc/letsencrypt/live/domain.tld:/etc/4get/certs - - ./banners:/var/www/html/4get/banner - - ./captchas:/var/www/html/4get/data/captcha ``` -Replace relevant values and start with `docker compose up -d` +##### Captcha Enabled + +Set `FOURGET_BOT_PROTECTION=1` and mount a directory containing captcha files to `/var/www/html/4get/data/captcha` + + +``` +# docker-compose.yaml +version: "3.7" + +services: + fourget: + image: luuul/4get:latest + restart: always + environment: + - FOURGET_VERSION=6 + - FOURGET_PROTO=http + - FOURGET_SERVER_NAME=4get.ca + - FOURGET_BOT_PROTECTION=1 + + ports: + - "80:80" + + volumes: + - ./captcha:/var/www/html/4get/data/captcha +``` + +##### Custom Banners + +``` +# docker-compose.yaml +version: "3.7" + +services: + fourget: + image: luuul/4get:latest + restart: always + environment: + - FOURGET_VERSION=6 + - FOURGET_PROTO=http + - FOURGET_SERVER_NAME=4get.ca + + ports: + - "80:80" + + volumes: + - ./banners:/var/www/html/4get/banner +``` -- cgit v1.2.3 From e31b9494af16bf833d14b6256ca055fa94b6f77b Mon Sep 17 00:00:00 2001 From: throwaway Date: Fri, 19 Apr 2024 13:47:02 -0700 Subject: pass array as comma separated env --- docker/docker-entrypoint.sh | 4 ++++ docker/gen_config.php | 31 +++++++++++++++++++------------ docs/docker.md | 15 ++++++++++----- 3 files changed, 33 insertions(+), 17 deletions(-) (limited to 'docs/docker.md') diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index ca0c4bc..bdb706a 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -5,6 +5,10 @@ set -e FOURGET_PROTO="${FOURGET_PROTO%\"}" FOURGET_PROTO="${FOURGET_PROTO#\"}" +# make lowercase +FOURGET_PROTO=`echo $FOURGET_PROTO | awk '{print tolower($0)}'` + + if [ "$FOURGET_PROTO" = "https" ] || [ -f /etc/4get/certs/fullchain.pem ] || [ -f /etc/4get/certs/privkey.pem ]; then echo "Using https configuration" cp /etc/apache2/https.conf /etc/apache2/httpd.conf diff --git a/docker/gen_config.php b/docker/gen_config.php index cb12e3a..cc43916 100644 --- a/docker/gen_config.php +++ b/docker/gen_config.php @@ -3,19 +3,21 @@ include "/var/www/html/4get/data/config.php"; $refl = new ReflectionClass('config'); -$config = ($refl->getConstants()); +$from_config = ($refl->getConstants()); +$from_env = array(); $env = getenv(); $fourget_env = array_filter($env, function($v, $k) { return str_starts_with($k, "FOURGET"); }, ARRAY_FILTER_USE_BOTH); - foreach($fourget_env as $key => $val) { $target_key = preg_replace('/^FOURGET_/', '', $key); - $config[$target_key] = trim($val, '\'"'); + $from_env[$target_key] = trim($val, '\'"'); }; +$merged_config = array_merge($from_config, $from_env); + function type_to_string($n) { $type = gettype($n); if ($type === "NULL") { @@ -52,26 +54,31 @@ function detect_captcha_dirs() { } -$special_keys = ["CAPTCHA_DATASET", "INSTANCES"]; +$special_keys = ["PROTO", "CAPTCHA_DATASET"]; $output = " $val){ +foreach(($merged_config) as $key => $val){ if(!in_array($key, $special_keys)) { -$output = $output . "\tconst " . $key . " = " . type_to_string($val) . ";\n"; -continue; + + // conversion between arrays and comma separated env value. + // If original type of field is array and there is a type mismatch such as when a comma separted string is passed, + // then split on comma if string and not numeric + if(gettype($from_config[$key]) != gettype($val) && !is_numeric($val)) { + $data = gettype($val) === "string" ? explode(",", $val) : $val; + $output = $output . "\tconst " . $key . " = " . type_to_string($data) . ";\n"; + } else { + $output = $output . "\tconst " . $key . " = " . type_to_string($val) . ";\n"; + } + + continue; } if($key === "CAPTCHA_DATASET") { $output = $output . "\tconst " . $key . " = " . type_to_string(detect_captcha_dirs()) . ";\n"; } - if($key === "INSTANCES") { - $instances_list = gettype($val) === "string" ? explode(",", $val) : $val; - $output = $output . "\tconst " . $key . " = " . type_to_string($instances_list) . ";\n"; - } - } $output = $output . "}\n"; diff --git a/docs/docker.md b/docs/docker.md index 2507bcf..e56b5ca 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -2,12 +2,17 @@ When using docker container any environment variables prefixed with `FOURGET_` will be added to the generated config located at `/var/www/html/4get/data/config.php` +When lists of data is expected in [data/config.php](../data/config.php), such as `INSTANCES`, you can pass in a comma separated string via environment variable. + +Example: +`FOURGET_INSTANCES="https://4get.ca,https://domain.tld"` + #### Special environment variables | Name | value | Example | | - | - | - | | FOURGET_PROTO | "http" or "https" | "https" | -| FOURGET_INSTANCES | comma separated string of urls | "https://4get.ca,https://domain.tld" | + #### Important directories @@ -65,7 +70,7 @@ version: "3.7" services: fourget: image: luuul/4get:latest - restart: always + restart: unless-stopped environment: - FOURGET_VERSION=6 - FOURGET_PROTO=http @@ -84,7 +89,7 @@ version: "3.7" services: fourget: image: luuul/4get:latest - restart: always + restart: unless-stopped environment: - FOURGET_VERSION=6 - FOURGET_PROTO=https @@ -110,7 +115,7 @@ version: "3.7" services: fourget: image: luuul/4get:latest - restart: always + restart: unless-stopped environment: - FOURGET_VERSION=6 - FOURGET_PROTO=http @@ -133,7 +138,7 @@ version: "3.7" services: fourget: image: luuul/4get:latest - restart: always + restart: unless-stopped environment: - FOURGET_VERSION=6 - FOURGET_PROTO=http -- cgit v1.2.3