Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
195
Issues
195
List
Boards
Labels
Service Desk
Milestones
Merge Requests
32
Merge Requests
32
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
9ecf40f8
Commit
9ecf40f8
authored
2 hours ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chore): reduce max processes for fpm and reduce respawn interval
parent
720522f6
master
No related merge requests found
Pipeline
#73993905
canceled with stages
in 13 minutes and 21 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
Dockerfile
containers/php-fpm/Dockerfile
+3
-0
opcache.ini
containers/php-fpm/opcache.ini
+1
-1
php-fpm.conf
containers/php-fpm/php-fpm.conf
+1
-1
No files found.
containers/php-fpm/Dockerfile
View file @
9ecf40f8
FROM
minds/php:latest
# Install opcache (move to php image)
RUN
docker-php-ext-install
-j
$(
nproc
)
opcache
# Additional folders
RUN
mkdir
--parents
--mode
=
0777 /tmp/minds-cache/
\
...
...
This diff is collapsed.
Click to expand it.
containers/php-fpm/opcache.ini
View file @
9ecf40f8
opcache.enable
=
1
opcache.memory_consumption
=
1024
opcache.memory_consumption
=
2048
opcache.interned_strings_buffer
=
64
opcache.max_accelerated_files
=
65407
opcache.validate_timestamps
=
0
...
...
This diff is collapsed.
Click to expand it.
containers/php-fpm/php-fpm.conf
View file @
9ecf40f8
...
...
@@ -9,7 +9,7 @@ listen.backlog = -1
pm
=
static
pm
.
max_children
=
250
pm
.
max_requests
=
2
000
pm
.
max_requests
=
1
000
pm
.
status_path
= /
status
chdir
= /
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment