使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
ka
/
ansible-role-nextcloud
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
php opcache
master
Markus Katharina Brechtel
7 年前
父节点
246a98472f
当前提交
acf4ad266a
共有
3 个文件被更改
,包括
17 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+2
-0
tasks/main.yml
+8
-0
tasks/php-opcache.yml
+7
-0
templates/php-opcache.conf.j2
+ 2
- 0
tasks/main.yml
查看文件
@@ -2,6 +2,8 @@
- include: setup_Debian.yml
- include: php-opcache.yml
- include: reset.yml
when: nextcloud_state == "reinstalled"
+ 8
- 0
tasks/php-opcache.yml
查看文件
@@ -0,0 +1,8 @@
---
- name: enable php opcache
template:
src: php-opcache.conf.j2
dest: /etc/php/7.0/apache2/conf.d/opcache.ini
notify: restart apache2
+ 7
- 0
templates/php-opcache.conf.j2
查看文件
@@ -0,0 +1,7 @@
opcache.enable=1
opcache.enable_cli=1
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.memory_consumption=128
opcache.save_comments=1
opcache.revalidate_freq=1
撰写
预览
正在加载...
取消
保存