Skip to content

Commit

Permalink
Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed Jun 27, 2024
1 parent 7ac432f commit 8ba24f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Login into registry
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
run: echo "${GITHUB_TOKEN}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Build and Push
run: bash build.sh
Expand Down
3 changes: 3 additions & 0 deletions php/8.3-alpine/php/conf.d/custom.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ error_log = "/dev/stderr"
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 256M

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 200M

; Sets max size of post data allowed.
; http://php.net/post-max-size
post_max_size = 200M

max_execution_time=600
default_socket_timeout=3600
request_terminate_timeout=600

0 comments on commit 8ba24f7

Please sign in to comment.