diff --git a/src/app/config.docker.php b/src/app/config.docker.php index 5b66bcc..1451c8a 100644 --- a/src/app/config.docker.php +++ b/src/app/config.docker.php @@ -1,173 +1,5 @@ System), syslog - logs to system log. - // Setting this to blank uses PHP logging (usually to http server - // error.log). - // Note that feed updating daemons don't use this logging facility - // for normal output. - - define('CONFIG_VERSION', getenv('TTRSS_CONFIG_VERSION')); - // Expected config version. Please update this option in config.php - // if necessary (after migrating all new options from this file). - - // vim:ft=php $snippets = glob(getenv("SCRIPT_ROOT")."/config.d/*.php"); foreach ($snippets as $snippet) { diff --git a/src/app/config.php-config.d b/src/app/config.php-config.d deleted file mode 100644 index ae7a85b..0000000 --- a/src/app/config.php-config.d +++ /dev/null @@ -1,7 +0,0 @@ - $snippets = glob(getenv("SCRIPT_ROOT")."/config.d/*.php"); - - foreach ($snippets as $snippet) { - require_once $snippet; - } - - diff --git a/src/app/config.php-dist b/src/app/config.php-dist deleted file mode 100644 index eed1a69..0000000 --- a/src/app/config.php-dist +++ /dev/null @@ -1,170 +0,0 @@ - System), syslog - logs to system log. - // Setting this to blank uses PHP logging (usually to http server - // error.log). - // Note that feed updating daemons don't use this logging facility - // for normal output. - - define('CONFIG_VERSION', 26); - // Expected config version. Please update this option in config.php - // if necessary (after migrating all new options from this file). - - // vim:ft=php diff --git a/src/app/config.php-xaccel b/src/app/config.php-xaccel deleted file mode 100644 index 8b77dd0..0000000 --- a/src/app/config.php-xaccel +++ /dev/null @@ -1 +0,0 @@ - define('NGINX_XACCEL_PREFIX', '/tt-rss'); diff --git a/src/app/prepare-config.php b/src/app/prepare-config.php deleted file mode 100755 index 1a82ce9..0000000 --- a/src/app/prepare-config.php +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -sed -e "s/define('\([A-Z_]\+\)', [^)]\+/define('\1', getenv('TTRSS_\1')/" \ - < config.php-dist > config.docker.php - -cat config.php-config.d config.php-xaccel >> config.docker.php diff --git a/src/app/prepare-environment.sh b/src/app/prepare-environment.sh deleted file mode 100755 index dcbb302..0000000 --- a/src/app/prepare-environment.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -grep define config.php-dist | sed -e "s/[ \t]*define('\([A-Z_]\+\)', ['\"]\?\([^'\")]\+\).*/ENV TTRSS_\1=\"\2\"/" \ - -e 's/"false"/""/'