Changes between Version 52 and Version 53 of PuffinServer


Ignore:
Timestamp:
07/11/13 14:16:41 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PuffinServer

    v52 v53  
    7878octopus up-stable all 
    7979}}} 
     80 
     81==== nginx config changes ==== 
    8082 
    8183To get the nginx and php-fpm munin stats working the following code starting with the comment needs adding to {{{/var/aegir/config/server_master/nginx.conf}}} in the nginx default server section: 
     
    114116}}} 
    115117 
     118Logs for analysis on penguin, see wiki:WebServerLogs are generated via the following being added to the {{{http}}} section of the {{{/etc/nginx/nginx.conf}}} file: 
     119 
     120{{{ 
     121  # log for awstats 
     122  log_format apache '$remote_addr - $remote_user [$time_local] "$request" ' 
     123                     '$status $body_bytes_sent "$http_referer" ' 
     124                     '"$http_user_agent"'; 
     125  access_log         /var/log/nginx/awstats.log apache; 
     126}}} 
     127 
     128==== php-fpm config changes ==== 
     129 
    116130And the following lines need uncommenting in {{{/opt/local/etc/php53-fpm.conf}}}: 
    117131 
     
    162176}}} 
    163177 
     178==== mysql config changes ==== 
     179 
    164180These settings in {{{/etc/mysql/my.cnf}}} are changed from the default and need checking after each upgrade: 
    165181 
     
    168184max_user_connections    = 75 
    169185}}} 
     186 
     187==== xdrago shell script changes ==== 
    170188 
    171189To disable the clobbering of log files two shell scripts need editing and some lines commenting out (see ticket:555#comment:22): 
     
    187205}}} 
    188206 
    189 Upgrade tickets: 
     207==== Upgrade tickets ==== 
    190208 
    191209* BOA-2.0.9 ticket:547