@fishawack/lab-env 4.3.1 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.4.0 (2022-11-17)
4
+ * [Feature] Added newly setup AWS accounts to the client prompts on `fw provision`
5
+ * [Bug] Increase nginx buffer size
6
+ * [Docs] Removed type in docs
7
+
3
8
  ### 4.3.1 (2022-11-14)
4
9
  * [Bug] key and dekey can now be run outside of repos
5
10
  * [Bug] Use repo_safe for all compose commands
package/README.md CHANGED
@@ -99,9 +99,6 @@ ERROR: for nginx Cannot start service nginx: OCI runtime create failed: contain
99
99
 
100
100
  Purge your NodeJs installation and install it via NVM [https://github.com/nvm-sh/nvm](https://github.com/nvm-sh/nvm)
101
101
 
102
- ### mySql creds
103
-
104
-
105
102
  ### No space left
106
103
 
107
104
  #### Problem
@@ -6,7 +6,7 @@ module.exports.iam = require("./iam.js");
6
6
 
7
7
  module.exports.slug = (repo, client, branch) => s3Safe(`${branch}-${repo}-${client}`);
8
8
 
9
- module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training', 'merck', 'acadia', 'travere', 'roche', 'utc', 'bayer', 'alcon', 'uhc', 'chiesi', '3m', 'sarepta', 'ipsen'];
9
+ module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training', 'merck', 'acadia', 'travere', 'roche', 'utc', 'bayer', 'alcon', 'uhc', 'chiesi', '3m', 'sarepta', 'ipsen', 'novocure'];
10
10
 
11
11
  module.exports.static = async (name, account, tags = [], credentials = []) => {
12
12
  let s3 = await module.exports.s3.createS3Bucket(name, account, tags);
@@ -25,6 +25,9 @@ server {
25
25
  include fastcgi_params;
26
26
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
27
27
  fastcgi_param SCRIPT_NAME $fastcgi_script_name;
28
+ fastcgi_buffer_size 4096k;
29
+ fastcgi_buffers 128 4096k;
30
+ fastcgi_busy_buffers_size 4096k;
28
31
  }
29
32
 
30
33
  location ~ \.(bmp|cur|gif|ico|jpe?g|png|svgz?|webp|pdf|dzi)$ {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nginx",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "lab-env docker config for the nginx module",
5
5
  "scripts": {
6
6
  "preversion": "docker login",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.3.1",
3
+ "version": "4.4.0",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {