forked from engelsystem/engelsystem
-
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.
[Changes] - Close bugfix #59 - function now returns 0 in case of error - Dockerfile - Include 2 new config files + browser update command - Fix .dockerignore [Add] - New .gitattributes files > make sure things are right during commit
- Loading branch information
1 parent
85145e5
commit 2b0d7a8
Showing
7 changed files
with
535 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
docker/ | ||
!docker/entrypoint.sh | ||
!docker/nginx.conf | ||
!docker/config/ | ||
|
||
# Configuration | ||
config/config.php | ||
|
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,3 @@ | ||
*.sh text eol=lf | ||
*.conf text eol=lf | ||
*.md text eol=lf |
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
File renamed without changes.
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,11 @@ | ||
[opcache] | ||
opcache.enable = 1 | ||
; 0 means it will check on every request | ||
; 0 is irrelevant if opcache.validate_timestamps=0 which is desirable in production | ||
opcache.revalidate_freq = 0 | ||
opcache.validate_timestamps = 1 | ||
opcache.max_accelerated_files = 10000 | ||
opcache.memory_consumption = 192 | ||
opcache.max_wasted_percentage = 10 | ||
opcache.interned_strings_buffer = 16 | ||
opcache.fast_shutdown = 1 |
Oops, something went wrong.