Enable production PHP settings

This commit is contained in:
paul 2021-09-25 03:24:51 +02:00 committed by Paul
parent 37db1342b5
commit f8ea051f99
2 changed files with 7 additions and 0 deletions

View File

@ -88,3 +88,6 @@ RUN chmod 755 /usr/local/bin/*
# Add crontab file in the cron directory
ADD crontab /etc/crontab
RUN chmod 0644 /etc/crontab
# Enable production config
RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini

View File

@ -156,11 +156,15 @@ enableSemantics( getenv("SEMANTIC_URL") );
# Set Subpages on
$wgNamespacesWithSubpages[NS_MAIN] = 1;
ini_set('display_errors', '0');
ini_set('display_startup_errors', '0');
# Enable long error messages
if (getenv("DEBUG")) {
$wgShowExceptionDetails = true;
$wgShowDBErrorBacktrace = true;
$wgShowSQLErrors = true;
ini_set("display_errors", 1);
ini_set('display_startup_errors', '1');
}
# Local configuration for MediaWiki