mirror of
https://github.com/casjaysdevdocker/cherokee
synced 2025-01-18 06:34:33 -05:00
🗃️ Committing everything that changed 🗃️
This commit is contained in:
parent
ca8b3000be
commit
e6835d122c
@ -1,5 +1,7 @@
|
|||||||
FROM casjaysdevdocker/python2:latest AS build
|
FROM casjaysdevdocker/python2:latest AS build
|
||||||
|
|
||||||
|
ARG PORTS="80 443"
|
||||||
|
|
||||||
WORKDIR /tmp/build
|
WORKDIR /tmp/build
|
||||||
|
|
||||||
RUN apk -U upgrade && \
|
RUN apk -U upgrade && \
|
||||||
@ -55,9 +57,9 @@ COPY ./config/. /usr/local/share/template-files/config/
|
|||||||
|
|
||||||
ENV PHP_SERVER=cherokee
|
ENV PHP_SERVER=cherokee
|
||||||
|
|
||||||
WORKDIR /data/htdocs
|
WORKDIR /data/htdocs/www
|
||||||
|
|
||||||
EXPOSE 19070 19071
|
EXPOSE $PORTS
|
||||||
|
|
||||||
VOLUME [ "/data", "/config" ]
|
VOLUME [ "/data", "/config" ]
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ fi
|
|||||||
[ -d "/usr/local/share/cherokee/icons" ] && [ ! -d "/config/cherokee/icons" ] && cp -Rf "/usr/local/share/cherokee/icons/." "/config/cherokee/icons/"
|
[ -d "/usr/local/share/cherokee/icons" ] && [ ! -d "/config/cherokee/icons" ] && cp -Rf "/usr/local/share/cherokee/icons/." "/config/cherokee/icons/"
|
||||||
[ -d "/usr/local/share/cherokee/themes" ] && [ ! -d "/config/cherokee/themes" ] && cp -Rf "/usr/local/share/cherokee/themes/." "/config/cherokee/themes/"
|
[ -d "/usr/local/share/cherokee/themes" ] && [ ! -d "/config/cherokee/themes" ] && cp -Rf "/usr/local/share/cherokee/themes/." "/config/cherokee/themes/"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [ ! -f "/config/ssl/key.pem" ] || [ ! -f "/etc/ssl/crt.pem" ]; then
|
if [ ! -f "/config/ssl//localhost.crt" ] || [ ! -f "/config/ssl//localhost.key" ]; then
|
||||||
create-ssl-cert
|
create-ssl-cert
|
||||||
fi
|
fi
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
@ -1,41 +1,141 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# shellcheck shell=bash
|
||||||
export TZ="${TZ:-America/New_York}"
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
export HOSTNAME="${HOSTNAME:-casjaysdev-cherokee}"
|
##@Version : 202210102226-git
|
||||||
|
# @@Author : Jason Hempstead
|
||||||
[ -n "${TZ}" ] && echo "${TZ}" >/etc/timezone
|
# @@Contact : jason@casjaysdev.com
|
||||||
[ -n "${HOSTNAME}" ] && echo "${HOSTNAME}" >/etc/hostname
|
# @@License : LICENSE.md
|
||||||
[ -n "${HOSTNAME}" ] && echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
|
# @@ReadME : entrypoint-cherokee.sh --help
|
||||||
|
# @@Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
|
||||||
|
# @@Created : Monday, Oct 10, 2022 22:26 EDT
|
||||||
|
# @@File : entrypoint-cherokee.sh
|
||||||
|
# @@Description :
|
||||||
|
# @@Changelog : New script
|
||||||
|
# @@TODO : Better documentation
|
||||||
|
# @@Other :
|
||||||
|
# @@Resource :
|
||||||
|
# @@Terminal App : no
|
||||||
|
# @@sudo/root : no
|
||||||
|
# @@Template : other/docker-entrypoint
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
APPNAME="$(basename "$0" 2>/dev/null)"
|
||||||
|
VERSION="202210102226-git"
|
||||||
|
HOME="${USER_HOME:-$HOME}"
|
||||||
|
USER="${SUDO_USER:-$USER}"
|
||||||
|
RUN_USER="${SUDO_USER:-$USER}"
|
||||||
|
SCRIPT_SRC_DIR="${BASH_SOURCE%/*}"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set bash options
|
||||||
|
[ "$1" == "--debug" ] && set -xo pipefail && export SCRIPT_OPTS="--debug" && export _DEBUG="on"
|
||||||
|
[ "$1" == "--raw" ] && export SHOW_RAW="true"
|
||||||
|
set -o pipefail
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set functions
|
||||||
|
__version() { echo -e ${GREEN:-}"$VERSION"${NC:-}; }
|
||||||
|
__find() { ls -A "$*" 2>/dev/null; }
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# colorization
|
||||||
|
[ -n "$SHOW_RAW" ] || printf_color() { echo -e '\t\t'${2:-}"${1:-}${NC}"; }
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
__exec_command() {
|
||||||
|
local cmd="${*:-/bin/bash -l}"
|
||||||
|
local exitCode=0
|
||||||
|
echo "Executing command: $cmd"
|
||||||
|
eval "$cmd" || exitCode=10
|
||||||
|
return ${exitCode:-$?}
|
||||||
|
}
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Functions
|
||||||
|
__heath_check() {
|
||||||
|
local status=0
|
||||||
|
#curl -q -LSsf -o /dev/null -s -w "200" "http://localhost/server-health" || status=$(($status + 1))
|
||||||
|
return ${status:-$?}
|
||||||
|
}
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Define default variables - don not change these
|
||||||
|
TZ="${TZ:-America/New_York}"
|
||||||
|
LOCAL_BIN_DIR="${LOCAL_BIN_DIR:-/usr/local/bin}"
|
||||||
|
HOSTNAME="${HOSTNAME:-casjaysdev-bin}"
|
||||||
|
TEMPLATE_DATA_DIR="$(__find /usr/local/share/template-files/data/ 2>/dev/null | grep '^' || echo '')"
|
||||||
|
TEMPLATE_CONFIG_DIR="$(__find /usr/local/share/template-files/config/ 2>/dev/null | grep '^' || echo '')"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Additional variables and variable overrides
|
||||||
|
SSL="true"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# import variables from file
|
||||||
|
[ -f "/root/env.sh" ] && . "/root/env.sh"
|
||||||
|
[ -f "/config/env.sh" ] && "/config/env.sh"
|
||||||
|
[ -f "/config/.env.sh" ] && . "/config/.env.sh"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Set timezone
|
||||||
|
[ -n "${TZ}" ] && echo "${TZ}" >"/etc/timezone"
|
||||||
[ -f "/usr/share/zoneinfo/${TZ}" ] && ln -sf "/usr/share/zoneinfo/${TZ}" "/etc/localtime"
|
[ -f "/usr/share/zoneinfo/${TZ}" ] && ln -sf "/usr/share/zoneinfo/${TZ}" "/etc/localtime"
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [[ ! -f "/config/ssl/key.pem" ]] || [[ ! -f "/etc/ssl/crt.pem" ]]; then
|
# Set hostname
|
||||||
openssl req \
|
if [ -n "${HOSTNAME}" ]; then
|
||||||
-new \
|
echo "${HOSTNAME}" >"/etc/hostname"
|
||||||
-newkey rsa:4096 \
|
echo "127.0.0.1 ${HOSTNAME} localhost ${HOSTNAME}.local" >"/etc/hosts"
|
||||||
-days 365 \
|
|
||||||
-nodes \
|
|
||||||
-x509 \
|
|
||||||
-subj "/C=US/ST=CA/L=Manhattan\ Beach/O=Managed\ Kaos/OU=Cherokee\ SSL/CN=localhost" \
|
|
||||||
-keyout /etc/ssl/server.pem \
|
|
||||||
-out /etc/ssl/server.pem
|
|
||||||
fi
|
fi
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Delete any gitkeep files
|
||||||
|
if [ "$SSL" = "true" ] || [ "$SSL" = "yes" ]; then
|
||||||
|
if [ -f "/config/ssl/server.crt" ] && [ -f "/config/ssl/server.key" ]; then
|
||||||
|
SSL="on"
|
||||||
|
SSL_CERT="/config/ssl/server.crt"
|
||||||
|
SSL_KEY="/config/ssl/server.key"
|
||||||
|
if [ -f "/config/ssl/ca.crt" ]; then
|
||||||
|
mkdir -p "/etc/ssl/certs"
|
||||||
|
cat "/config/ssl/ca.crt" >>"/etc/ssl/certs/ca-certificates.crt"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
[ -d "/config/ssl" ] || mkdir -p "/config/ssl"
|
||||||
|
export SSL_DIR="/config/ssl"
|
||||||
|
create-ssl-cert
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Update ssl certificates
|
||||||
|
[ -f "/config/ssl/ca.crt" ] && cat "/config/ssl/ca.crt" >>"/etc/ssl/certs/ca-certificates.crt"
|
||||||
|
type update-ca-certificates &>/dev/null && update-ca-certificates
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Export variables
|
||||||
|
export TZ HOSTNAME
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# Additional commands
|
||||||
|
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
--help) # Help message
|
||||||
healthcheck)
|
echo 'Docker container for '$APPNAME''
|
||||||
CH_PORT="$(netstat -lnt | grep -q "80" && echo "OK" || false)"
|
echo "Usage: $APPNAME [healthcheck, bash, command]"
|
||||||
[ -n "$CH_PORT" ] && exit 0 || exit 1
|
echo "Failed command will have exit code 10"
|
||||||
|
echo
|
||||||
|
exitCode=$?
|
||||||
;;
|
;;
|
||||||
|
|
||||||
bash)
|
healthcheck) # Docker healthcheck
|
||||||
|
__heath_check || exit 10
|
||||||
|
echo "$(uname -s) $(uname -m) is running"
|
||||||
|
exitCode=$?
|
||||||
|
;;
|
||||||
|
|
||||||
|
*/bin/sh | */bin/bash | bash | shell | sh) # Launch shell
|
||||||
shift 1
|
shift 1
|
||||||
exec /bin/bash "$@"
|
__exec_command "${@:-/bin/bash}"
|
||||||
exit
|
exitCode=$?
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*) # Execute primary command
|
||||||
/usr/sbin/cherokee-admin -b -p 19070 -c /config/cherokee.conf &
|
if [ $# -eq 0 ]; then
|
||||||
exec /usr/sbin/cherokee -c /config/cherokee.conf
|
cherokee-server
|
||||||
|
exitCode=$?
|
||||||
|
else
|
||||||
|
__exec_command "$@"
|
||||||
|
exitCode=$?
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
# end of entrypoint
|
||||||
|
exit ${exitCode:-$?}
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
@ -40,8 +40,8 @@ vserver!1!rule!2!match!directory = /cherokee_icons
|
|||||||
vserver!1!rule!1!handler = common
|
vserver!1!rule!1!handler = common
|
||||||
vserver!1!rule!1!handler!iocache = 1
|
vserver!1!rule!1!handler!iocache = 1
|
||||||
vserver!1!rule!1!match = default
|
vserver!1!rule!1!match = default
|
||||||
vserver!1!ssl_certificate_file = /config/ssl/server.pem
|
vserver!1!ssl_certificate_file = /config/ssl//localhost.crt
|
||||||
vserver!1!ssl_certificate_key_file = /config/ssl/server.pem
|
vserver!1!ssl_certificate_key_file = /config/ssl//localhost.key
|
||||||
icons!default = page_white.png
|
icons!default = page_white.png
|
||||||
icons!directory = folder.png
|
icons!directory = folder.png
|
||||||
icons!file!bomb.png = core
|
icons!file!bomb.png = core
|
||||||
|
Loading…
x
Reference in New Issue
Block a user