-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: AWS linux 2 migration of webapp environment (#14976)
* feat: aws migration QA env(SQSERVICES-1965) * feat: update nginx file * fix: update env name to resolve application name issue * fix: add Procfile * refactor: delete old Profile * feat: copy assets * fix: delete fs.copysysnc * fix: copy Procfile script * fix: add Procfile inside zip.js * feat: update qa env name * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin <[email protected]> * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin <[email protected]> * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin <[email protected]> * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin <[email protected]> * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin <[email protected]> * fix: make new Elastic Beanstalk configuration backward compatible * fix: remove comma * fix: create different namespace for new and old configuration * feat: backward compaitable configuration * feat: rename config file * fix: delete old file * fix: print PLATFORM_BRANCH * fix: revert config change * fix: delete unused code * feat: migrate to new al2 staging env * refactor: delete unused code * feat: add new branch in the list * feat: add new env to deploy * fix: remove auto deploy of staging new env * feat: dev env al2 migration * feat: migrate edge to amazon al2 * feat: migrate prod env to amazon al2 * feat: migrate master and avs * fix: remove al2 from auto deploy * chore: small updates to prepare for merge * chore: cleaning up things --------- Co-authored-by: Thomas Belin <[email protected]> Co-authored-by: Timothy Le Bon <[email protected]>
- Loading branch information
1 parent
b2b4075
commit d083926
Showing
7 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: npm run start:prod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
option_settings: | ||
aws:elasticbeanstalk:container:nodejs: | ||
GzipCompression: true | ||
NodeCommand: "npm run start:prod" | ||
ProxyServer: nginx | ||
aws:elasticbeanstalk:environment:proxy: | ||
ProxyServer: nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
large_client_header_buffers 4 32k; | ||
fastcgi_buffers 16 32k; | ||
fastcgi_buffer_size 32k; | ||
proxy_buffer_size 128k; | ||
proxy_buffers 4 256k; | ||
proxy_busy_buffers_size 256k; | ||
server_tokens off; |