File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 0.9.4 (release date: 2016-01-11)
2+
3+ * Bugfix for removing multiple newrelic instances
4+ * Bugfix for newrelic install fails gracefully
5+
16## 0.9.3 (release date: 2016-01-10)
27
38 * Removed latest version of nodejs installation
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ All services are defined and managed using the phusion/baseimage methodology. Lo
1313* Nginx
1414* PHP-FPM (5.6)
1515* NTPD
16+ * New Relic APM
1617
1718### Default Settings
1819The container sets up a www root folder in the following location:
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- set -e
2+
3+ # Fail on error
4+ # set -e
35
46echo " Enabling APM metrics for ${NR_APP_NAME} "
57newrelic-install install
68
79# Update the application name
810sed -i " s/newrelic.appname = \" PHP Application\" /newrelic.appname = \" ${NR_APP_NAME} \" /" /etc/php5/fpm/conf.d/newrelic.ini
11+
12+ # Remove extra new relic config file (causes log spamming)
13+ rm /etc/php5/cli/conf.d/newrelic.ini
You can’t perform that action at this time.
0 commit comments