Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
Doorcode
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guardians of the Kretschmar Elock System
Doorcode
Commits
929f9838
Commit
929f9838
authored
Dec 15, 2020
by
Jacob Priddy
👌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable PHP JIT
parent
9505f483
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
Dockerfile
Dockerfile
+1
-0
php/dev.ini
php/dev.ini
+6
-0
php/prod.ini
php/prod.ini
+5
-0
prod.Dockerfile
prod.Dockerfile
+1
-0
No files found.
Dockerfile
View file @
929f9838
...
...
@@ -31,6 +31,7 @@ RUN docker-php-ext-install pdo \
pdo_pgsql
\
bcmath
\
fileinfo
\
opcache
\
gd
# Install composer
...
...
php/dev.ini
View file @
929f9838
...
...
@@ -10,3 +10,9 @@ display_errors = On
date.timezone
=
"America/Los_Angeles"
memory_limit
=
256M
# Enable PHP JIT
opcache.enable
=
1
opcache.enable_cli
=
1
opcache.jit_buffer_size
=
100M
opcache.jit
=
1255
php/prod.ini
View file @
929f9838
error_reporting
=
E_ALL & ~E_DEPRECATED & ~E_STRICT
date.timezone
=
"America/Los_Angeles"
memory_limit
=
256M
opcache.enable
=
1
opcache.enable_cli
=
1
opcache.jit_buffer_size
=
100M
opcache.jit
=
1255
prod.Dockerfile
View file @
929f9838
...
...
@@ -28,6 +28,7 @@ RUN docker-php-ext-install pdo \
pdo_pgsql
\
bcmath
\
fileinfo
\
opcache
\
gd
# Install composer
...
...
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