-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Use dedicated images for php and nginx, aligned workdirs (#4)
* feat: Use dedicated images for php and nginx, aligned workdirs * chore: Only enable nginx healthcheck if ready * Apply suggestions from code review Co-authored-by: Eliot <72140926+eliot488995568@users.noreply.github.com> --------- Co-authored-by: Eliot <72140926+eliot488995568@users.noreply.github.com>
- Loading branch information
1 parent
5e50725
commit 464b4ac
Showing
18 changed files
with
462 additions
and
88 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
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,14 @@ | ||
gzip on; | ||
gzip_proxied any; | ||
gzip_vary on; | ||
gzip_comp_level 2; | ||
gzip_min_length 256; | ||
gzip_types application/atom+xml application/javascript application/json application/rss+xml | ||
application/vnd.ms-fontobject application/x-font-opentype application/x-font-truetype | ||
application/x-font-ttf application/x-javascript application/xhtml+xml application/xml | ||
font/eot font/opentype font/otf font/truetype image/svg+xml image/vnd.microsoft.icon | ||
image/x-icon image/x-win-bitmap text/css text/javascript text/plain text/xml; | ||
gzip_disable "MSIE [1-6]\.(?!.*SV1)"; | ||
# make sure gzip does not lose large gzipped js or css files | ||
# see http://blog.leetsoft.com/2007/7/25/nginx-gzip-ssl | ||
gzip_buffers 16 8k; |
Oops, something went wrong.