Skip to content

Commit

Permalink
Merge pull request #11 from Faks/dev
Browse files Browse the repository at this point in the history
laravel.ini:
  • Loading branch information
Faks authored Oct 15, 2023
2 parents 9591bec + 726640b commit c56b013
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 11 deletions.
34 changes: 28 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ services:
- "8100:9000"
expose:
- "8100"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand All @@ -244,7 +243,6 @@ services:
- "8300:9000"
expose:
- "8300"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand All @@ -268,7 +266,6 @@ services:
- "8200:9000"
expose:
- "8200"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand All @@ -292,7 +289,6 @@ services:
- "8000:9000"
expose:
- "8000"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand All @@ -316,7 +312,6 @@ services:
- "7400:9000"
expose:
- "7400"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand All @@ -340,7 +335,6 @@ services:
- "5600:9000"
expose:
- "5600"
- "9000"
extra_hosts:
- "dockerhost:${DOCKER_HOST_IP}"
environment:
Expand Down Expand Up @@ -1343,6 +1337,7 @@ services:
- "${HAPROXY_HOST_HTTP_PORT}:8085"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${DATA_PATH_HOST}/haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
links:
- proxy
- proxy2
Expand Down Expand Up @@ -2254,3 +2249,30 @@ services:
networks:
- frontend
- backend
### Speedtest Tracker ##################################################
speedtest-tracker:
expose:
- "8086"
- "8643"
ports:
- '8086:80'
- '8643:443'
environment:
- PUID=1000
- PGID=1000
- DB_CONNECTION=mysql
- DB_HOST=laradock-mysql-1
- DB_PORT=3306
- DB_DATABASE=${MYSQL_DATABASE}
- DB_USERNAME=${MYSQL_USER}
- DB_PASSWORD=${MYSQL_PASSWORD}
volumes:
- ${DATA_PATH_HOST}/speedtest-tracker/config/:/config
- ${DATA_PATH_HOST}/speedtest-tracker/ssl/web:/etc/ssl/web
image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
restart: unless-stopped
networks:
- backend
depends_on:
- workspace
- mysql
10 changes: 5 additions & 5 deletions php-fpm/laravel.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
date.timezone=UTC
display_errors=Off
date.timezone=Europe/Riga
display_errors=On
log_errors=On

; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 256M
memory_limit = 512M
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 20M
upload_max_filesize = 512M
; Sets max size of post data allowed.
; http://php.net/post-max-size
post_max_size = 20M
post_max_size = 512M
max_execution_time=600
default_socket_timeout=3600
request_terminate_timeout=600

0 comments on commit c56b013

Please sign in to comment.