Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
php
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Eric Zillmann
php
Commits
1d304999
Commit
1d304999
authored
8 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
#2 Removed apc and only kept it in php.ini for PHP 5.3
parent
a4010eed
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tasks/php.yml
+0
-10
0 additions, 10 deletions
tasks/php.yml
templates/etc-php5-apache2-php.ini
+7
-4
7 additions, 4 deletions
templates/etc-php5-apache2-php.ini
templates/etc-php5-conf-d-apc.ini
+0
-8
0 additions, 8 deletions
templates/etc-php5-conf-d-apc.ini
with
7 additions
and
22 deletions
tasks/php.yml
+
0
−
10
View file @
1d304999
...
...
@@ -46,16 +46,6 @@
notify
:
-
"
Apache
|
Restart
Apache"
-
name
:
"
PHP
|
Cache
configuration
file,
apc.ini"
template
:
src=etc-php5-conf-d-apc.ini
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/apc.ini
owner=root
group=root
mode=0644
notify
:
-
"
Apache
|
Restart
Apache"
-
name
:
"
PHP
|
Cache
configuration
file,
opcache.ini"
template
:
src=etc-php5-conf-d-opcache.ini
...
...
This diff is collapsed.
Click to expand it.
templates/etc-php5-apache2-php.ini
+
7
−
4
View file @
1d304999
...
...
@@ -1970,10 +1970,13 @@ define_syslog_variables = Off
{%
if
php_version|default('5.5')
==
'5.3'
%}
[apc]
extension
=
apc.so
apc.rfc1867
=
1
apc.shm_size
=
256M
apc.shm_segments
=
1
apc.num_files_hint
=
0
apc.rfc1867
=
{{ apc_rfc1867 }}
apc.shm_size
=
{{ apc_shm_size }}
apc.shm_segments
=
{{ apc_shm_segments }}
apc.num_files_hint
=
{{ apc_num_files_hint }}
apc.ttl
=
{{ apc_ttl }}
apc.user_ttl
=
{{ apc_user_ttl }}
apc.gc_ttl
=
{{ apc_gc_ttl }}
[imagick]
extension
=
imagick.so
...
...
This diff is collapsed.
Click to expand it.
templates/etc-php5-conf-d-apc.ini
deleted
100644 → 0
+
0
−
8
View file @
a4010eed
extension
=
apc.so
apc.rfc1867
=
{{ apc_rfc1867 }}
apc.shm_size
=
{{ apc_shm_size }}
apc.shm_segments
=
{{ apc_shm_segments }}
apc.num_files_hint
=
{{ apc_num_files_hint }}
apc.ttl
=
{{ apc_ttl }}
apc.user_ttl
=
{{ apc_user_ttl }}
apc.gc_ttl
=
{{ apc_gc_ttl }}
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