increate php memory limit

This commit is contained in:
Shihaam Abdul Rahman 2022-10-08 13:59:41 +05:00
parent 2c9e61417b
commit e43a18df11
Signed by: shihaam
GPG Key ID: 1D33DF08702F2A9C
3 changed files with 5 additions and 3 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@ logs/
logs/* logs/*
nextcloud/ nextcloud/
nextcloud/* nextcloud/*
database/
database/*

View File

@ -427,7 +427,7 @@ max_input_time = 60
; Maximum amount of memory a script may consume ; Maximum amount of memory a script may consume
; https://php.net/memory-limit ; https://php.net/memory-limit
memory_limit = 128M memory_limit = 1G
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ; ; Error handling and logging ;

View File

@ -11,9 +11,9 @@ services:
- ./configs/var/www/html/config:/var/www/html/config - ./configs/var/www/html/config:/var/www/html/config
- ./nextcloud:/var/www/html - ./nextcloud:/var/www/html
- ./logs:/root/logs - ./logs:/root/logs
- /mnt/hdd/nextcloud-data:/var/www/html/data #CHANGE MOUNT POINT FOR THIS - /mnt/vol2/nextcloud-data:/var/www/html/data #CHANGE MOUNT POINT FOR THIS
ports: ports:
- 8000:80 - 8003:80
######################### #########################
db: db:
image: mysql:8 image: mysql:8