Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextcloud
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libre.sh
docker
nextcloud
Commits
f547801c
Commit
f547801c
authored
2 years ago
by
Timothee Gosselin
Browse files
Options
Downloads
Patches
Plain Diff
fix: use default php-fpm conf & custom workers conf
parent
9061a865
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#1606
passed with stages
in 5 minutes and 15 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
base/Dockerfile
+1
-1
1 addition, 1 deletion
base/Dockerfile
base/php-fpm.conf
+0
-30
0 additions, 30 deletions
base/php-fpm.conf
base/workers.conf
+7
-0
7 additions, 0 deletions
base/workers.conf
with
8 additions
and
31 deletions
base/Dockerfile
+
1
−
1
View file @
f547801c
...
@@ -13,7 +13,7 @@ ENV VISIO_URL=https://meet.liiib.re
...
@@ -13,7 +13,7 @@ ENV VISIO_URL=https://meet.liiib.re
RUN
apk add
--no-cache
patch jq
RUN
apk add
--no-cache
patch jq
COPY
redis.ini /usr/local/etc/php/conf.d/
COPY
redis.ini /usr/local/etc/php/conf.d/
COPY
opcache-recommended.ini /usr/local/etc/php/conf.d/opcache.ini
COPY
opcache-recommended.ini /usr/local/etc/php/conf.d/opcache.ini
COPY
php-fpm
.conf /usr/local/etc/php-fpm.conf
COPY
workers
.conf /usr/local/etc/php-fpm.
d/workers.
conf
COPY
--chown=www-data:root ./runtime /runtime
COPY
--chown=www-data:root ./runtime /runtime
COPY
--chown=www-data:root config/* /usr/src/nextcloud/config/
COPY
--chown=www-data:root config/* /usr/src/nextcloud/config/
COPY
--from=apps --chown=www-data:root /apps/* /usr/src/nextcloud/apps/
COPY
--from=apps --chown=www-data:root /apps/* /usr/src/nextcloud/apps/
...
...
This diff is collapsed.
Click to expand it.
base/php-fpm.conf
deleted
100755 → 0
+
0
−
30
View file @
9061a865
;
This
file
was
initially
adapated
from
the
output
of
: (
on
PHP
5
.
6
)
;
grep
-
vE
'^;|^ *$'
/
usr
/
local
/
etc
/
php
-
fpm
.
conf
.
default
[
global
]
error_log
= /
proc
/
self
/
fd
/
2
daemonize
=
no
log_limit
=
8192
[
www
]
;
if
we
send
this
to
/
proc
/
self
/
fd
/
1
,
it
never
appears
;
Ensure
worker
stdout
and
stderr
are
sent
to
the
main
error
log
.
access
.
log
= /
proc
/
self
/
fd
/
2
user
=
www
-
data
group
=
www
-
data
listen
= [::]:
9000
pm
=
dynamic
pm
.
max_children
=
100
pm
.
start_servers
=
5
pm
.
min_spare_servers
=
5
pm
.
max_spare_servers
=
10
pm
.
status_path
= /
status
clear_env
=
no
catch_workers_output
=
yes
decorate_workers_output
=
no
This diff is collapsed.
Click to expand it.
base/workers.conf
0 → 100755
+
7
−
0
View file @
f547801c
[
www
]
pm
=
dynamic
pm
.
max_children
=
100
pm
.
start_servers
=
5
pm
.
min_spare_servers
=
5
pm
.
max_spare_servers
=
10
pm
.
status_path
= /
status
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment