Move all shared into this new repo
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
# Ansible Shared Roles
|
# Ansible Shared Roles
|
||||||
|
|
||||||
Generic shared ansible roles for use in multiple ansible projects.
|
Generic shared ansible roles for use in multiple ansible projects.
|
||||||
|
|
||||||
|
This is meant to be separate from your main ansible repo and symlinked into your roles folder
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
Main ansible is ~/Code/ansible
|
||||||
|
Clone this repo into ~/Code/ansible-shared
|
||||||
|
ln -s ~/Code/ansible-shared ~/Code/ansible/playbooks/roles/shared
|
||||||
|
|||||||
36
app/atlassian/bitbucket/tasks/main.yml
Normal file
36
app/atlassian/bitbucket/tasks/main.yml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
# Create the atlbitbucket PostgreSQL user
|
||||||
|
- name: Creating the atlbitbucket PostgreSQL user
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_user:
|
||||||
|
name: atlbitbucket
|
||||||
|
password: '{{ atlbitbucket_password }}'
|
||||||
|
encrypted: yes
|
||||||
|
expires: infinity
|
||||||
|
state: present
|
||||||
|
|
||||||
|
# pgsql can login in many ways
|
||||||
|
# Local linux user on socket: sudo -u atlbitbucket psql bitbucket
|
||||||
|
# TCP/IP with password: psql -h localhost -U atlbitbucket bitbucket
|
||||||
|
|
||||||
|
# Create the bitbucket PostgreSQL database
|
||||||
|
- name: Creating the bitbucket PostgreSQL database
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_db:
|
||||||
|
db: bitbucket
|
||||||
|
encoding: UTF-8
|
||||||
|
owner: atlbitbucket
|
||||||
|
|
||||||
|
# Create PostgreSQL account for employee mreschke
|
||||||
|
- name: Creating PostgreSQL account for mreschke
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_user:
|
||||||
|
name: mreschke
|
||||||
|
role_attr_flags: SUPERUSER
|
||||||
|
password: '{{ mreschke_password }}'
|
||||||
|
encrypted: yes
|
||||||
|
expires: infinity
|
||||||
|
state: present
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
<Server port="8000" shutdown="SHUTDOWN" debug="0">
|
||||||
|
<Service name="Tomcat-Standalone">
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
DEFAULT - Direct connector with no proxy, for unproxied HTTP access to Confluence.
|
||||||
|
|
||||||
|
If using a http/https proxy, comment out this connector.
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"/>
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTP - Proxying Confluence via Apache or Nginx over HTTP
|
||||||
|
|
||||||
|
If you're proxying traffic to Confluence over HTTP, uncomment the connector below and comment out the others.
|
||||||
|
Make sure you provide the right information for proxyName and proxyPort.
|
||||||
|
|
||||||
|
For more information see:
|
||||||
|
Apache - https://confluence.atlassian.com/x/4xQLM
|
||||||
|
nginx - https://confluence.atlassian.com/x/TgSvEg
|
||||||
|
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
scheme="http" proxyName="<subdomain>.<domain>.com" proxyPort="80"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTPS - Direct connector with no proxy, for unproxied HTTPS access to Confluence.
|
||||||
|
|
||||||
|
For more info see https://confluence.atlassian.com/x/s3UC
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8443" maxHttpHeaderSize="8192"
|
||||||
|
maxThreads="150" minSpareThreads="25"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
enableLookups="false" disableUploadTimeout="true"
|
||||||
|
acceptCount="100" scheme="https" secure="true"
|
||||||
|
clientAuth="false" sslProtocol="TLSv1.2" sslEnabledProtocols="TLSv1.2" SSLEnabled="true"
|
||||||
|
URIEncoding="UTF-8" keystorePass="<MY_CERTIFICATE_PASSWORD>"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTPS - Proxying Confluence via Apache or Nginx over HTTPS
|
||||||
|
|
||||||
|
If you're proxying traffic to Confluence over HTTPS, uncomment the connector below and comment out the others.
|
||||||
|
Make sure you provide the right information for proxyName and proxyPort.
|
||||||
|
|
||||||
|
For more information see:
|
||||||
|
Apache - https://confluence.atlassian.com/x/PTT3MQ
|
||||||
|
nginx - https://confluence.atlassian.com/x/cNIvMw
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
scheme="https" proxyName="<subdomain>.<domain>.com" proxyPort="443"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<Engine name="Standalone" defaultHost="localhost" debug="0">
|
||||||
|
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="false" startStopThreads="4">
|
||||||
|
<Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true">
|
||||||
|
<!-- Logging configuration for Confluence is specified in confluence/WEB-INF/classes/log4j.properties -->
|
||||||
|
<Manager pathname=""/>
|
||||||
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/>
|
||||||
|
</Context>
|
||||||
|
|
||||||
|
<Context path="${confluence.context.path}/synchrony-proxy" docBase="../synchrony-proxy" debug="0"
|
||||||
|
reloadable="false" useHttpOnly="true">
|
||||||
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/>
|
||||||
|
</Context>
|
||||||
|
</Host>
|
||||||
|
</Engine>
|
||||||
|
</Service>
|
||||||
|
</Server>
|
||||||
File diff suppressed because it is too large
Load Diff
40
app/atlassian/confluence/files/mysql/mysqld.cnf
Normal file
40
app/atlassian/confluence/files/mysql/mysqld.cnf
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
#
|
||||||
|
# The MySQL Server configuration file.
|
||||||
|
#
|
||||||
|
# For explanations see
|
||||||
|
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
|
||||||
|
|
||||||
|
[mysqld]
|
||||||
|
pid-file = /var/run/mysqld/mysqld.pid
|
||||||
|
socket = /var/run/mysqld/mysqld.sock
|
||||||
|
datadir = /var/lib/mysql
|
||||||
|
log-error = /var/log/mysql/error.log
|
||||||
|
# By default we only accept connections from localhost
|
||||||
|
bind-address = 0.0.0.0
|
||||||
|
# Disabling symbolic-links is recommended to prevent assorted security risks
|
||||||
|
symbolic-links=0
|
||||||
|
|
||||||
|
# Confluence Customizations
|
||||||
|
# https://confluence.atlassian.com/doc/database-setup-for-mysql-128747.html
|
||||||
|
character-set-server=utf8
|
||||||
|
collation-server=utf8_bin
|
||||||
|
default-storage-engine=INNODB
|
||||||
|
max_allowed_packet=256M
|
||||||
|
innodb_log_file_size=2GB
|
||||||
|
transaction-isolation=READ-COMMITTED
|
||||||
|
binlog_format=row
|
||||||
3
app/atlassian/confluence/handlers/main.yml
Normal file
3
app/atlassian/confluence/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart mysql
|
||||||
|
service: name=mysql state=restarted
|
||||||
2
app/atlassian/confluence/tasks/main.yml
Normal file
2
app/atlassian/confluence/tasks/main.yml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: mysql.yml
|
||||||
34
app/atlassian/confluence/tasks/mysql.yml
Normal file
34
app/atlassian/confluence/tasks/mysql.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
# Copy /etc/mysql/mysql.conf.d/mysqld.cnf
|
||||||
|
- name: Copying /etc/mysql/mysql.conf.d/mysqld.cnf
|
||||||
|
copy:
|
||||||
|
src: files/mysql/mysqld.cnf
|
||||||
|
dest: /etc/mysql/mysql.conf.d/mysqld.cnf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
notify: restart mysql # Only reloads if file has changed!
|
||||||
|
|
||||||
|
# Create the confluence MySQL database
|
||||||
|
- name: Creating the confluence database
|
||||||
|
mysql_db:
|
||||||
|
name: confluence
|
||||||
|
state: present
|
||||||
|
|
||||||
|
# Create confluence MySQL user
|
||||||
|
- name: Creating MySQL confluence user
|
||||||
|
mysql_user:
|
||||||
|
name: confluence
|
||||||
|
host: localhost # This is local user, you cannot access MySQL on this user remotely (not '%' login), this is good
|
||||||
|
password: '{{ confluence_password }}'
|
||||||
|
priv: 'confluence.*:ALL'
|
||||||
|
state: present # Verified if you change the PW and re-run, it DOES change properly!
|
||||||
|
|
||||||
|
# Create MySQL accounts for employee mreschke
|
||||||
|
- name: Creating MySQL account for mreschke
|
||||||
|
mysql_user:
|
||||||
|
name: mreschke
|
||||||
|
host: '%'
|
||||||
|
password: '{{ mreschke_password }}'
|
||||||
|
priv: '*.*:ALL'
|
||||||
|
state: present
|
||||||
39
app/atlassian/jira/tasks/main.yml
Normal file
39
app/atlassian/jira/tasks/main.yml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
# Create the jira PostgreSQL user
|
||||||
|
- name: Creating the jira PostgreSQL user
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_user:
|
||||||
|
name: jira
|
||||||
|
password: '{{ jira_password }}'
|
||||||
|
encrypted: yes
|
||||||
|
expires: infinity
|
||||||
|
state: present
|
||||||
|
|
||||||
|
# pgsql can login in many ways
|
||||||
|
# Local linux user on socket: sudo -u jira psql jira
|
||||||
|
# TCP/IP with password: psql -h localhost -U jira jira
|
||||||
|
|
||||||
|
# Create the jira PostgreSQL database
|
||||||
|
- name: Creating the jira PostgreSQL database
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_db:
|
||||||
|
db: jira
|
||||||
|
encoding: UNICODE
|
||||||
|
lc_collate: C
|
||||||
|
lc_ctype: C
|
||||||
|
template: template0
|
||||||
|
owner: jira
|
||||||
|
|
||||||
|
# Create PostgreSQL account for employee mreschke
|
||||||
|
- name: Creating PostgreSQL account for mreschke
|
||||||
|
become: yes
|
||||||
|
become_user: postgres
|
||||||
|
postgresql_user:
|
||||||
|
name: mreschke
|
||||||
|
role_attr_flags: SUPERUSER
|
||||||
|
password: '{{ mreschke_password }}'
|
||||||
|
encrypted: yes
|
||||||
|
expires: infinity
|
||||||
|
state: present
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
<Server port="8000" shutdown="SHUTDOWN" debug="0">
|
||||||
|
<Service name="Tomcat-Standalone">
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
DEFAULT - Direct connector with no proxy, for unproxied HTTP access to Confluence.
|
||||||
|
|
||||||
|
If using a http/https proxy, comment out this connector.
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"/>
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTP - Proxying Confluence via Apache or Nginx over HTTP
|
||||||
|
|
||||||
|
If you're proxying traffic to Confluence over HTTP, uncomment the connector below and comment out the others.
|
||||||
|
Make sure you provide the right information for proxyName and proxyPort.
|
||||||
|
|
||||||
|
For more information see:
|
||||||
|
Apache - https://confluence.atlassian.com/x/4xQLM
|
||||||
|
nginx - https://confluence.atlassian.com/x/TgSvEg
|
||||||
|
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
scheme="http" proxyName="<subdomain>.<domain>.com" proxyPort="80"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTPS - Direct connector with no proxy, for unproxied HTTPS access to Confluence.
|
||||||
|
|
||||||
|
For more info see https://confluence.atlassian.com/x/s3UC
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8443" maxHttpHeaderSize="8192"
|
||||||
|
maxThreads="150" minSpareThreads="25"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
enableLookups="false" disableUploadTimeout="true"
|
||||||
|
acceptCount="100" scheme="https" secure="true"
|
||||||
|
clientAuth="false" sslProtocol="TLSv1.2" sslEnabledProtocols="TLSv1.2" SSLEnabled="true"
|
||||||
|
URIEncoding="UTF-8" keystorePass="<MY_CERTIFICATE_PASSWORD>"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
==============================================================================================================
|
||||||
|
HTTPS - Proxying Confluence via Apache or Nginx over HTTPS
|
||||||
|
|
||||||
|
If you're proxying traffic to Confluence over HTTPS, uncomment the connector below and comment out the others.
|
||||||
|
Make sure you provide the right information for proxyName and proxyPort.
|
||||||
|
|
||||||
|
For more information see:
|
||||||
|
Apache - https://confluence.atlassian.com/x/PTT3MQ
|
||||||
|
nginx - https://confluence.atlassian.com/x/cNIvMw
|
||||||
|
==============================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
|
||||||
|
maxThreads="48" minSpareThreads="10"
|
||||||
|
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
|
||||||
|
protocol="org.apache.coyote.http11.Http11NioProtocol"
|
||||||
|
scheme="https" proxyName="<subdomain>.<domain>.com" proxyPort="443"/>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<Engine name="Standalone" defaultHost="localhost" debug="0">
|
||||||
|
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="false" startStopThreads="4">
|
||||||
|
<Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true">
|
||||||
|
<!-- Logging configuration for Confluence is specified in confluence/WEB-INF/classes/log4j.properties -->
|
||||||
|
<Manager pathname=""/>
|
||||||
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/>
|
||||||
|
</Context>
|
||||||
|
|
||||||
|
<Context path="${confluence.context.path}/synchrony-proxy" docBase="../synchrony-proxy" debug="0"
|
||||||
|
reloadable="false" useHttpOnly="true">
|
||||||
|
<Valve className="org.apache.catalina.valves.StuckThreadDetectionValve" threshold="60"/>
|
||||||
|
</Context>
|
||||||
|
</Host>
|
||||||
|
</Engine>
|
||||||
|
</Service>
|
||||||
|
</Server>
|
||||||
File diff suppressed because it is too large
Load Diff
38
app/atlassian/servicedesk/files/mysql/mysqld.cnf
Normal file
38
app/atlassian/servicedesk/files/mysql/mysqld.cnf
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#
|
||||||
|
# The Percona Server 5.7 configuration file.
|
||||||
|
#
|
||||||
|
# One can use all long options that the program supports.
|
||||||
|
# Run program with --help to get a list of available options and with
|
||||||
|
# --print-defaults to see which it would actually understand and use.
|
||||||
|
#
|
||||||
|
# For explanations see
|
||||||
|
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
|
||||||
|
|
||||||
|
[mysqld]
|
||||||
|
user = mysql
|
||||||
|
pid-file = /var/run/mysqld/mysqld.pid
|
||||||
|
socket = /var/run/mysqld/mysqld.sock
|
||||||
|
port = 3306
|
||||||
|
basedir = /usr
|
||||||
|
datadir = /var/lib/mysql
|
||||||
|
tmpdir = /tmp
|
||||||
|
lc-messages-dir = /usr/share/mysql
|
||||||
|
explicit_defaults_for_timestamp
|
||||||
|
|
||||||
|
log-error = /var/log/mysql/error.log
|
||||||
|
|
||||||
|
bind-address = 0.0.0.0
|
||||||
|
|
||||||
|
# Recommended in standard MySQL setup
|
||||||
|
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_ALL_TABLES
|
||||||
|
|
||||||
|
# Disabling symbolic-links is recommended to prevent assorted security risks
|
||||||
|
symbolic-links=0
|
||||||
|
|
||||||
|
# Servicedesk Customizations
|
||||||
|
# https://confluence.atlassian.com/adminjiraserver/connecting-jira-applications-to-mysql-938846854.html
|
||||||
|
character-set-server=utf8
|
||||||
|
collation-server=utf8_bin
|
||||||
|
default-storage-engine=INNODB
|
||||||
|
max_allowed_packet=256M
|
||||||
|
innodb_log_file_size=2G
|
||||||
3
app/atlassian/servicedesk/handlers/main.yml
Normal file
3
app/atlassian/servicedesk/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart mysql
|
||||||
|
service: name=mysql state=restarted
|
||||||
2
app/atlassian/servicedesk/tasks/main.yml
Normal file
2
app/atlassian/servicedesk/tasks/main.yml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
- include_tasks: mysql.yml
|
||||||
36
app/atlassian/servicedesk/tasks/mysql.yml
Normal file
36
app/atlassian/servicedesk/tasks/mysql.yml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
# Copy MySQL server config file
|
||||||
|
- name: Writing /etc/mysql/percona-server.conf.d/mysqld.cnf
|
||||||
|
template:
|
||||||
|
src: "files/mysql/mysqld.cnf"
|
||||||
|
dest: "/etc/mysql/percona-server.conf.d/mysqld.cnf"
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644 #-rw-r--r--
|
||||||
|
notify: restart mysql # Only runs if file changed!
|
||||||
|
|
||||||
|
# Create the servicedesk MySQL database
|
||||||
|
- name: Creating the servicedesk database
|
||||||
|
mysql_db:
|
||||||
|
name: servicedesk
|
||||||
|
state: present
|
||||||
|
encoding: utf8
|
||||||
|
collation: utf8_bin
|
||||||
|
|
||||||
|
# Create servicedesk MySQL user
|
||||||
|
- name: Creating MySQL servicedesk user
|
||||||
|
mysql_user:
|
||||||
|
name: servicedesk
|
||||||
|
host: localhost # This is local user, you cannot access MySQL on this user remotely (not '%' login), this is good
|
||||||
|
password: '{{ servicedesk_password }}'
|
||||||
|
priv: 'servicedesk.*:ALL'
|
||||||
|
state: present # Verified if you change the PW and re-run, it DOES change properly!
|
||||||
|
|
||||||
|
# Create MySQL accounts for employee mreschke
|
||||||
|
- name: Creating MySQL account for mreschke
|
||||||
|
mysql_user:
|
||||||
|
name: mreschke
|
||||||
|
host: '%'
|
||||||
|
password: '{{ mreschke_password }}'
|
||||||
|
priv: '*.*:ALL'
|
||||||
|
state: present
|
||||||
22
app/gitlab/tasks/main.yml
Normal file
22
app/gitlab/tasks/main.yml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
# Add Gitlab sources GPG keys
|
||||||
|
# Reverse engineered their https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh
|
||||||
|
- name: Addding Gitlab sources GPG keys
|
||||||
|
apt_key: url='https://packages.gitlab.com/gitlab/gitlab-ee/gpgkey' state=present
|
||||||
|
|
||||||
|
# Add Gitlab repositories - Debian 9 Stretch
|
||||||
|
# Reverse engineered their https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh
|
||||||
|
# They CURL this URL to get actual apt-sources https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/config_file.list?os=debian&dist=stretch&source=script
|
||||||
|
- name: Adding Gitlab sources for Debian 9 Stretch
|
||||||
|
apt_repository: repo='deb https://packages.gitlab.com/gitlab/gitlab-ee/debian/ stretch main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install Gitlab
|
||||||
|
- name: Installing Gitlab
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- gitlab-ee
|
||||||
|
environment:
|
||||||
|
EXTERNAL_URL: '{{ url }}'
|
||||||
15
app/gluu-gateway/tasks/install-ubuntu16.yml
Normal file
15
app/gluu-gateway/tasks/install-ubuntu16.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# Add GLUU sources GPG keys
|
||||||
|
- name: Addding GLUU sources GPG keys
|
||||||
|
apt_key: url='https://repo.gluu.org/ubuntu/gluu-apt.key' state=present
|
||||||
|
|
||||||
|
# Add GLUU repositories
|
||||||
|
- name: Adding GLUU sources for Ubuntu 16.04
|
||||||
|
apt_repository: repo='deb https://repo.gluu.org/ubuntu/ xenial main' state=present
|
||||||
|
|
||||||
|
# Install GLUU Gateway
|
||||||
|
- name: Installing GLUU Gateway
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- gluu-gateway
|
||||||
4
app/gluu-gateway/tasks/main.yml
Normal file
4
app/gluu-gateway/tasks/main.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
# Gluu Gateway works on Ubuntu 16.04...not on Debian 9
|
||||||
|
- include_tasks: install-ubuntu16.yml
|
||||||
|
when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "16.04"
|
||||||
17
app/gluu/tasks/main.yml
Normal file
17
app/gluu/tasks/main.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
# Add GLUU sources GPG keys
|
||||||
|
- name: Addding GLUU sources GPG keys
|
||||||
|
apt_key: url='https://repo.gluu.org/debian/gluu-apt.key' state=present
|
||||||
|
|
||||||
|
# Add GLUU repositories - Debian 9 Stretch
|
||||||
|
- name: Adding GLUU sources for Debian 9 Stretch
|
||||||
|
apt_repository: repo='deb https://repo.gluu.org/debian/ stretch-stable main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install GLUU
|
||||||
|
- name: Installing GLUU 3.1.6
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- gluu-server-3.1.6.sp1
|
||||||
8
app/tightvncserver/tasks/main.yml
Normal file
8
app/tightvncserver/tasks/main.yml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
# Install tightvncserver
|
||||||
|
- name: Installing tightvncserver
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- tightvncserver
|
||||||
396
app/zabbix/agent/files/original_zabbix_agentd.conf
Normal file
396
app/zabbix/agent/files/original_zabbix_agentd.conf
Normal file
@@ -0,0 +1,396 @@
|
|||||||
|
# This is a configuration file for Zabbix agent daemon (Unix)
|
||||||
|
# To get more information about Zabbix, visit http://www.zabbix.com
|
||||||
|
|
||||||
|
############ GENERAL PARAMETERS #################
|
||||||
|
|
||||||
|
### Option: PidFile
|
||||||
|
# Name of PID file.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# PidFile=/tmp/zabbix_agentd.pid
|
||||||
|
|
||||||
|
PidFile=/var/run/zabbix/zabbix_agentd.pid
|
||||||
|
|
||||||
|
### Option: LogType
|
||||||
|
# Specifies where log messages are written to:
|
||||||
|
# system - syslog
|
||||||
|
# file - file specified with LogFile parameter
|
||||||
|
# console - standard output
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# LogType=file
|
||||||
|
|
||||||
|
### Option: LogFile
|
||||||
|
# Log file name for LogType 'file' parameter.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# LogFile=
|
||||||
|
|
||||||
|
LogFile=/var/log/zabbix/zabbix_agentd.log
|
||||||
|
|
||||||
|
### Option: LogFileSize
|
||||||
|
# Maximum size of log file in MB.
|
||||||
|
# 0 - disable automatic log rotation.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 0-1024
|
||||||
|
# Default:
|
||||||
|
# LogFileSize=1
|
||||||
|
|
||||||
|
LogFileSize=0
|
||||||
|
|
||||||
|
### Option: DebugLevel
|
||||||
|
# Specifies debug level:
|
||||||
|
# 0 - basic information about starting and stopping of Zabbix processes
|
||||||
|
# 1 - critical information
|
||||||
|
# 2 - error information
|
||||||
|
# 3 - warnings
|
||||||
|
# 4 - for debugging (produces lots of information)
|
||||||
|
# 5 - extended debugging (produces even more information)
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 0-5
|
||||||
|
# Default:
|
||||||
|
# DebugLevel=3
|
||||||
|
|
||||||
|
### Option: SourceIP
|
||||||
|
# Source IP address for outgoing connections.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# SourceIP=
|
||||||
|
|
||||||
|
### Option: EnableRemoteCommands
|
||||||
|
# Whether remote commands from Zabbix server are allowed.
|
||||||
|
# 0 - not allowed
|
||||||
|
# 1 - allowed
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# EnableRemoteCommands=0
|
||||||
|
|
||||||
|
### Option: LogRemoteCommands
|
||||||
|
# Enable logging of executed shell commands as warnings.
|
||||||
|
# 0 - disabled
|
||||||
|
# 1 - enabled
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# LogRemoteCommands=0
|
||||||
|
|
||||||
|
##### Passive checks related
|
||||||
|
|
||||||
|
### Option: Server
|
||||||
|
# List of comma delimited IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers and Zabbix proxies.
|
||||||
|
# Incoming connections will be accepted only from the hosts listed here.
|
||||||
|
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally and '::/0' will allow any IPv4 or IPv6 address.
|
||||||
|
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||||||
|
# Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.domain
|
||||||
|
#
|
||||||
|
# Mandatory: yes, if StartAgents is not explicitly set to 0
|
||||||
|
# Default:
|
||||||
|
# Server=
|
||||||
|
|
||||||
|
Server=127.0.0.1
|
||||||
|
|
||||||
|
### Option: ListenPort
|
||||||
|
# Agent will listen on this port for connections from the server.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 1024-32767
|
||||||
|
# Default:
|
||||||
|
# ListenPort=10050
|
||||||
|
|
||||||
|
### Option: ListenIP
|
||||||
|
# List of comma delimited IP addresses that the agent should listen on.
|
||||||
|
# First IP address is sent to Zabbix server if connecting to it to retrieve list of active checks.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# ListenIP=0.0.0.0
|
||||||
|
|
||||||
|
### Option: StartAgents
|
||||||
|
# Number of pre-forked instances of zabbix_agentd that process passive checks.
|
||||||
|
# If set to 0, disables passive checks and the agent will not listen on any TCP port.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 0-100
|
||||||
|
# Default:
|
||||||
|
# StartAgents=3
|
||||||
|
|
||||||
|
##### Active checks related
|
||||||
|
|
||||||
|
### Option: ServerActive
|
||||||
|
# List of comma delimited IP:port (or hostname:port) pairs of Zabbix servers and Zabbix proxies for active checks.
|
||||||
|
# If port is not specified, default port is used.
|
||||||
|
# IPv6 addresses must be enclosed in square brackets if port for that host is specified.
|
||||||
|
# If port is not specified, square brackets for IPv6 addresses are optional.
|
||||||
|
# If this parameter is not specified, active checks are disabled.
|
||||||
|
# Example: ServerActive=127.0.0.1:20051,zabbix.domain,[::1]:30051,::1,[12fc::1]
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# ServerActive=
|
||||||
|
|
||||||
|
ServerActive=127.0.0.1
|
||||||
|
|
||||||
|
### Option: Hostname
|
||||||
|
# Unique, case sensitive hostname.
|
||||||
|
# Required for active checks and must match hostname as configured on the server.
|
||||||
|
# Value is acquired from HostnameItem if undefined.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# Hostname=
|
||||||
|
|
||||||
|
Hostname=Zabbix server
|
||||||
|
|
||||||
|
### Option: HostnameItem
|
||||||
|
# Item used for generating Hostname if it is undefined. Ignored if Hostname is defined.
|
||||||
|
# Does not support UserParameters or aliases.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# HostnameItem=system.hostname
|
||||||
|
|
||||||
|
### Option: HostMetadata
|
||||||
|
# Optional parameter that defines host metadata.
|
||||||
|
# Host metadata is used at host auto-registration process.
|
||||||
|
# An agent will issue an error and not start if the value is over limit of 255 characters.
|
||||||
|
# If not defined, value will be acquired from HostMetadataItem.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 0-255 characters
|
||||||
|
# Default:
|
||||||
|
# HostMetadata=
|
||||||
|
|
||||||
|
### Option: HostMetadataItem
|
||||||
|
# Optional parameter that defines an item used for getting host metadata.
|
||||||
|
# Host metadata is used at host auto-registration process.
|
||||||
|
# During an auto-registration request an agent will log a warning message if
|
||||||
|
# the value returned by specified item is over limit of 255 characters.
|
||||||
|
# This option is only used when HostMetadata is not defined.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# HostMetadataItem=
|
||||||
|
|
||||||
|
### Option: RefreshActiveChecks
|
||||||
|
# How often list of active checks is refreshed, in seconds.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 60-3600
|
||||||
|
# Default:
|
||||||
|
# RefreshActiveChecks=120
|
||||||
|
|
||||||
|
### Option: BufferSend
|
||||||
|
# Do not keep data longer than N seconds in buffer.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 1-3600
|
||||||
|
# Default:
|
||||||
|
# BufferSend=5
|
||||||
|
|
||||||
|
### Option: BufferSize
|
||||||
|
# Maximum number of values in a memory buffer. The agent will send
|
||||||
|
# all collected data to Zabbix Server or Proxy if the buffer is full.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 2-65535
|
||||||
|
# Default:
|
||||||
|
# BufferSize=100
|
||||||
|
|
||||||
|
### Option: MaxLinesPerSecond
|
||||||
|
# Maximum number of new lines the agent will send per second to Zabbix Server
|
||||||
|
# or Proxy processing 'log' and 'logrt' active checks.
|
||||||
|
# The provided value will be overridden by the parameter 'maxlines',
|
||||||
|
# provided in 'log' or 'logrt' item keys.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 1-1000
|
||||||
|
# Default:
|
||||||
|
# MaxLinesPerSecond=20
|
||||||
|
|
||||||
|
############ ADVANCED PARAMETERS #################
|
||||||
|
|
||||||
|
### Option: Alias
|
||||||
|
# Sets an alias for an item key. It can be used to substitute long and complex item key with a smaller and simpler one.
|
||||||
|
# Multiple Alias parameters may be present. Multiple parameters with the same Alias key are not allowed.
|
||||||
|
# Different Alias keys may reference the same item key.
|
||||||
|
# For example, to retrieve the ID of user 'zabbix':
|
||||||
|
# Alias=zabbix.userid:vfs.file.regexp[/etc/passwd,^zabbix:.:([0-9]+),,,,\1]
|
||||||
|
# Now shorthand key zabbix.userid may be used to retrieve data.
|
||||||
|
# Aliases can be used in HostMetadataItem but not in HostnameItem parameters.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range:
|
||||||
|
# Default:
|
||||||
|
|
||||||
|
### Option: Timeout
|
||||||
|
# Spend no more than Timeout seconds on processing
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 1-30
|
||||||
|
# Default:
|
||||||
|
# Timeout=3
|
||||||
|
|
||||||
|
### Option: AllowRoot
|
||||||
|
# Allow the agent to run as 'root'. If disabled and the agent is started by 'root', the agent
|
||||||
|
# will try to switch to the user specified by the User configuration option instead.
|
||||||
|
# Has no effect if started under a regular user.
|
||||||
|
# 0 - do not allow
|
||||||
|
# 1 - allow
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# AllowRoot=0
|
||||||
|
|
||||||
|
### Option: User
|
||||||
|
# Drop privileges to a specific, existing user on the system.
|
||||||
|
# Only has effect if run as 'root' and AllowRoot is disabled.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# User=zabbix
|
||||||
|
|
||||||
|
### Option: Include
|
||||||
|
# You may include individual files or all files in a directory in the configuration file.
|
||||||
|
# Installing Zabbix will create include directory in /usr/local/etc, unless modified during the compile time.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# Include=
|
||||||
|
|
||||||
|
Include=/etc/zabbix/zabbix_agentd.d/*.conf
|
||||||
|
|
||||||
|
# Include=/usr/local/etc/zabbix_agentd.userparams.conf
|
||||||
|
# Include=/usr/local/etc/zabbix_agentd.conf.d/
|
||||||
|
# Include=/usr/local/etc/zabbix_agentd.conf.d/*.conf
|
||||||
|
|
||||||
|
####### USER-DEFINED MONITORED PARAMETERS #######
|
||||||
|
|
||||||
|
### Option: UnsafeUserParameters
|
||||||
|
# Allow all characters to be passed in arguments to user-defined parameters.
|
||||||
|
# The following characters are not allowed:
|
||||||
|
# \ ' " ` * ? [ ] { } ~ $ ! & ; ( ) < > | # @
|
||||||
|
# Additionally, newline characters are not allowed.
|
||||||
|
# 0 - do not allow
|
||||||
|
# 1 - allow
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Range: 0-1
|
||||||
|
# Default:
|
||||||
|
# UnsafeUserParameters=0
|
||||||
|
|
||||||
|
### Option: UserParameter
|
||||||
|
# User-defined parameter to monitor. There can be several user-defined parameters.
|
||||||
|
# Format: UserParameter=<key>,<shell command>
|
||||||
|
# See 'zabbix_agentd' directory for examples.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# UserParameter=
|
||||||
|
|
||||||
|
####### LOADABLE MODULES #######
|
||||||
|
|
||||||
|
### Option: LoadModulePath
|
||||||
|
# Full path to location of agent modules.
|
||||||
|
# Default depends on compilation options.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# LoadModulePath=${libdir}/modules
|
||||||
|
|
||||||
|
### Option: LoadModule
|
||||||
|
# Module to load at agent startup. Modules are used to extend functionality of the agent.
|
||||||
|
# Format: LoadModule=<module.so>
|
||||||
|
# The modules must be located in directory specified by LoadModulePath.
|
||||||
|
# It is allowed to include multiple LoadModule parameters.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# LoadModule=
|
||||||
|
|
||||||
|
####### TLS-RELATED PARAMETERS #######
|
||||||
|
|
||||||
|
### Option: TLSConnect
|
||||||
|
# How the agent should connect to server or proxy. Used for active checks.
|
||||||
|
# Only one value can be specified:
|
||||||
|
# unencrypted - connect without encryption
|
||||||
|
# psk - connect using TLS and a pre-shared key
|
||||||
|
# cert - connect using TLS and a certificate
|
||||||
|
#
|
||||||
|
# Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection)
|
||||||
|
# Default:
|
||||||
|
# TLSConnect=unencrypted
|
||||||
|
|
||||||
|
### Option: TLSAccept
|
||||||
|
# What incoming connections to accept.
|
||||||
|
# Multiple values can be specified, separated by comma:
|
||||||
|
# unencrypted - accept connections without encryption
|
||||||
|
# psk - accept connections secured with TLS and a pre-shared key
|
||||||
|
# cert - accept connections secured with TLS and a certificate
|
||||||
|
#
|
||||||
|
# Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection)
|
||||||
|
# Default:
|
||||||
|
# TLSAccept=unencrypted
|
||||||
|
|
||||||
|
### Option: TLSCAFile
|
||||||
|
# Full pathname of a file containing the top-level CA(s) certificates for
|
||||||
|
# peer certificate verification.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSCAFile=
|
||||||
|
|
||||||
|
### Option: TLSCRLFile
|
||||||
|
# Full pathname of a file containing revoked certificates.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSCRLFile=
|
||||||
|
|
||||||
|
### Option: TLSServerCertIssuer
|
||||||
|
# Allowed server certificate issuer.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSServerCertIssuer=
|
||||||
|
|
||||||
|
### Option: TLSServerCertSubject
|
||||||
|
# Allowed server certificate subject.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSServerCertSubject=
|
||||||
|
|
||||||
|
### Option: TLSCertFile
|
||||||
|
# Full pathname of a file containing the agent certificate or certificate chain.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSCertFile=
|
||||||
|
|
||||||
|
### Option: TLSKeyFile
|
||||||
|
# Full pathname of a file containing the agent private key.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSKeyFile=
|
||||||
|
|
||||||
|
### Option: TLSPSKIdentity
|
||||||
|
# Unique, case sensitive string used to identify the pre-shared key.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSPSKIdentity=
|
||||||
|
|
||||||
|
### Option: TLSPSKFile
|
||||||
|
# Full pathname of a file containing the pre-shared key.
|
||||||
|
#
|
||||||
|
# Mandatory: no
|
||||||
|
# Default:
|
||||||
|
# TLSPSKFile=
|
||||||
6
app/zabbix/agent/handlers/main.yml
Normal file
6
app/zabbix/agent/handlers/main.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: restart mariadb
|
||||||
|
service: name=mariadb state=restarted
|
||||||
|
|
||||||
|
- name: restart zabbix-agent
|
||||||
|
service: name=zabbix-agent state=started
|
||||||
23
app/zabbix/agent/tasks/main.yml
Normal file
23
app/zabbix/agent/tasks/main.yml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
# Addubg Zabbix .deb file
|
||||||
|
- name: Install Zabbix .deb package from the internet.
|
||||||
|
apt:
|
||||||
|
deb: https://repo.zabbix.com/zabbix/3.4/debian/pool/main/z/zabbix-release/zabbix-release_3.4-1+stretch_all.deb
|
||||||
|
|
||||||
|
# Install Zabbix applications
|
||||||
|
- name: Installing Zabbix applications
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
#- zabbix-server-mysql
|
||||||
|
#- zabbix-frontend-php
|
||||||
|
- zabbix-agent
|
||||||
|
|
||||||
|
# Ensure zabbix-agent service is running
|
||||||
|
- name: Starting Zabbix Agent Service
|
||||||
|
service:
|
||||||
|
name: zabbix-agent
|
||||||
|
state: started
|
||||||
|
|
||||||
6
app/zabbix/server/handlers/main.yml
Normal file
6
app/zabbix/server/handlers/main.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: restart mariadb
|
||||||
|
service: name=mariadb state=restarted
|
||||||
|
|
||||||
|
- name: restart zabbix-server
|
||||||
|
service: name=zabbix-server state=started
|
||||||
17
app/zabbix/server/tasks/main.yml
Normal file
17
app/zabbix/server/tasks/main.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
#Adding Zabbix .deb file
|
||||||
|
- name: Install Zabbix .deb package from the internet.
|
||||||
|
apt:
|
||||||
|
deb: https://repo.zabbix.com/zabbix/3.4/debian/pool/main/z/zabbix-release/zabbix-release_3.4-1+stretch_all.deb
|
||||||
|
|
||||||
|
# Install Zabbix applications
|
||||||
|
- name: Installing Zabbix applications
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- zabbix-server-mysql
|
||||||
|
- zabbix-frontend-php
|
||||||
|
- zabbix-agent
|
||||||
|
|
||||||
|
|
||||||
11
build/artifactory-oss/tasks/main.yml
Normal file
11
build/artifactory-oss/tasks/main.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: Addding Artifactory OSS apt repository key
|
||||||
|
apt_key: url='https://bintray.com/user/downloadSubjectPublicKey?username=jfrog' state=present
|
||||||
|
|
||||||
|
- name: Adding Artifactory OSS apt repository sources
|
||||||
|
apt_repository: repo='deb https://jfrog.bintray.com/artifactory-debs stretch main' state=present
|
||||||
|
|
||||||
|
- name: Installing Artifactory OSS
|
||||||
|
apt: name={{ item }} update_cache=yes state=present
|
||||||
|
with_items:
|
||||||
|
- jfrog-artifactory-oss
|
||||||
17
build/artifactory-pro/files/default
Normal file
17
build/artifactory-pro/files/default
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#Default values
|
||||||
|
export ARTIFACTORY_HOME=/var/opt/jfrog/artifactory
|
||||||
|
export ARTIFACTORY_USER=artifactory
|
||||||
|
#export JAVA_HOME=/opt/java/1.8.0
|
||||||
|
#export START_LOCAL_REPLICATOR=true
|
||||||
|
|
||||||
|
export TOMCAT_HOME=/opt/jfrog/artifactory/tomcat
|
||||||
|
export ARTIFACTORY_PID=/var/opt/jfrog/run/artifactory.pid
|
||||||
|
|
||||||
|
# mReschke adjust to 2048m initial and 3500m max (we have 4GB on VM)
|
||||||
|
export JAVA_OPTIONS="-server -Xms2048m -Xmx3500m -Xss256k -XX:+UseG1GC -XX:OnOutOfMemoryError=\"kill -9 %p\""
|
||||||
|
export JAVA_OPTIONS="$JAVA_OPTIONS -Djruby.compile.invokedynamic=false -Dfile.encoding=UTF8 -Dartdist=deb -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true -Djava.security.egd=file:/dev/./urandom"
|
||||||
|
|
||||||
|
# Timeout waiting for artifactory to start
|
||||||
|
# START_TMO=60
|
||||||
16
build/artifactory-pro/files/default-original
Normal file
16
build/artifactory-pro/files/default-original
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#Default values
|
||||||
|
export ARTIFACTORY_HOME=/var/opt/jfrog/artifactory
|
||||||
|
export ARTIFACTORY_USER=artifactory
|
||||||
|
#export JAVA_HOME=/opt/java/1.8.0
|
||||||
|
#export START_LOCAL_REPLICATOR=true
|
||||||
|
|
||||||
|
export TOMCAT_HOME=/opt/jfrog/artifactory/tomcat
|
||||||
|
export ARTIFACTORY_PID=/var/opt/jfrog/run/artifactory.pid
|
||||||
|
|
||||||
|
export JAVA_OPTIONS="-server -Xms512m -Xmx2g -Xss256k -XX:+UseG1GC -XX:OnOutOfMemoryError=\"kill -9 %p\""
|
||||||
|
export JAVA_OPTIONS="$JAVA_OPTIONS -Djruby.compile.invokedynamic=false -Dfile.encoding=UTF8 -Dartdist=deb -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true -Djava.security.egd=file:/dev/./urandom"
|
||||||
|
|
||||||
|
# Timeout waiting for artifactory to start
|
||||||
|
# START_TMO=60
|
||||||
3
build/artifactory-pro/handlers/main.yml
Normal file
3
build/artifactory-pro/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart artifactory
|
||||||
|
service: name=artifactory state=restarted
|
||||||
21
build/artifactory-pro/tasks/main.yml
Normal file
21
build/artifactory-pro/tasks/main.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
- name: Addding Artifactory OSS apt repository key
|
||||||
|
apt_key: url='https://bintray.com/user/downloadSubjectPublicKey?username=jfrog' state=present
|
||||||
|
|
||||||
|
- name: Adding Artifactory OSS apt repository sources
|
||||||
|
apt_repository: repo='deb https://jfrog.bintray.com/artifactory-pro-debs stretch main' state=present
|
||||||
|
|
||||||
|
- name: Installing Artifactory OSS
|
||||||
|
apt: name={{ item }} update_cache=yes state=present
|
||||||
|
with_items:
|
||||||
|
- jfrog-artifactory-pro
|
||||||
|
|
||||||
|
# Copy /etc/opt/jfrog/artifactory/default
|
||||||
|
- name: Copying /etc/opt/jfrog/artifactory/default
|
||||||
|
copy:
|
||||||
|
src: files/default
|
||||||
|
dest: /etc/opt/jfrog/artifactory/default
|
||||||
|
owner: artifactory
|
||||||
|
group: artifactory
|
||||||
|
mode: 0644
|
||||||
|
notify: restart artifactory
|
||||||
12
build/jenkins/tasks/main.yml
Normal file
12
build/jenkins/tasks/main.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
- name: Addding Jenkins apt repository key
|
||||||
|
apt_key: url='https://pkg.jenkins.io/debian/jenkins.io.key' state=present
|
||||||
|
|
||||||
|
- name: Adding Jenkins apt repository sources
|
||||||
|
apt_repository: repo='deb http://pkg.jenkins.io/debian-stable binary/' state=present
|
||||||
|
|
||||||
|
- name: Installing Jenkins
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name: jenkins
|
||||||
13
code/composer/tasks/main.yml
Normal file
13
code/composer/tasks/main.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
# Install Composer
|
||||||
|
# All versions of Debian
|
||||||
|
- name: Installing PHP Composer
|
||||||
|
command: "{{item}}"
|
||||||
|
with_items:
|
||||||
|
- curl -o install https://getcomposer.org/installer
|
||||||
|
- php install
|
||||||
|
- mv composer.phar /usr/local/bin/composer
|
||||||
|
- rm install
|
||||||
|
args:
|
||||||
|
chdir: /tmp
|
||||||
|
creates: /usr/local/bin/composer
|
||||||
7
code/java-8-openjre/tasks/main.yml
Normal file
7
code/java-8-openjre/tasks/main.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
# Install OpenJRE 8
|
||||||
|
- name: Installing OpenJRE 8
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name: openjdk-8-jre
|
||||||
37
code/java-8-oracle/tasks/install-debian.yml
Normal file
37
code/java-8-oracle/tasks/install-debian.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
---
|
||||||
|
# From https://linoxide.com/debian/install-java-8-debian-gnulinux-9-stretch/
|
||||||
|
# Using a Ubuntu 16.10 yakkety PPA, actually that failed
|
||||||
|
# For debian 9 the debian 8 xenial instructions worked
|
||||||
|
# See https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-debian-8
|
||||||
|
|
||||||
|
# Install software-properties-common (for PPA usage)
|
||||||
|
- name: Installing software-properties-common for PPA usage on Debian
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- software-properties-common
|
||||||
|
- dirmngr
|
||||||
|
|
||||||
|
# Add GPG Keys
|
||||||
|
- name: Addding Oracle Java 8 sources GPG key
|
||||||
|
apt_key: keyserver=keyserver.ubuntu.com id=C2518248EEA14886 state=present
|
||||||
|
|
||||||
|
# Installing oracle-java8-installer presents an interactive EULA, this silences that
|
||||||
|
- name: Accept Oracle Java 8 License
|
||||||
|
debconf: name='oracle-java8-installer' question='shared/accepted-oracle-license-v1-1' value='true' vtype='select'
|
||||||
|
|
||||||
|
# Add Java repositories for Debian 9
|
||||||
|
# For debian 8 see https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-debian-8
|
||||||
|
# Tried yakkety, failed, couldn't even find oracle-java8-installer in dpkg database
|
||||||
|
# Replaced with older Debian 8 xenial PPA
|
||||||
|
- name: Adding Oracle Java sources for Debian 9 Jessie
|
||||||
|
apt_repository: repo='deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install oracle-java8-installer
|
||||||
|
- name: Installing oracle-java8-installer
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name: oracle-java8-installer
|
||||||
12
code/java-8-oracle/tasks/main.yml
Normal file
12
code/java-8-oracle/tasks/main.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# NOTE, NOT being used yet, build for Confluence, we decided to use the embedded version of java instead
|
||||||
|
# Experiment later if needed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Oracle Java 8
|
||||||
|
|
||||||
|
# Install Oracle Java 8 - Debian All Versions
|
||||||
|
- include_tasks: install-debian.yml
|
||||||
|
when: ansible_os_family == "Debian"
|
||||||
17
code/net-core-asp/tasks/main.yml
Normal file
17
code/net-core-asp/tasks/main.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
# Add microsoft GPG keys
|
||||||
|
- name: Addding microsoft sources GPG key
|
||||||
|
apt_key: url='https://packages.microsoft.com/keys/microsoft.asc' state=present
|
||||||
|
|
||||||
|
# Add microsoft repo sources
|
||||||
|
- name: Adding microsoft sources for Debian 9 Jessie
|
||||||
|
apt_repository: repo='deb [arch=amd64] https://packages.microsoft.com/debian/9/prod stretch main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install ASP.NET Core Runtime 2.1
|
||||||
|
- name: Installing ASP.NET Core Runtime 2.1
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- aspnetcore-runtime-2.1
|
||||||
14
code/nodejs-10-lts/tasks/main.yml
Normal file
14
code/nodejs-10-lts/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
# Install nodesource
|
||||||
|
- name: Installing nodesource for node.js 10x LTS
|
||||||
|
command: "{{item}}"
|
||||||
|
with_items:
|
||||||
|
- curl -o install https://deb.nodesource.com/setup_10.x
|
||||||
|
- bash install
|
||||||
|
args:
|
||||||
|
chdir: /tmp
|
||||||
|
creates: /usr/bin/nodejs
|
||||||
|
|
||||||
|
# Install NodeJS 10.x LTS
|
||||||
|
- name: Installing node.js 10x LTS
|
||||||
|
apt: name=nodejs state=present
|
||||||
14
code/nodejs-12-lts/tasks/main.yml
Normal file
14
code/nodejs-12-lts/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
# Install nodesource
|
||||||
|
- name: Installing nodesource for node.js 12x LTS
|
||||||
|
command: "{{item}}"
|
||||||
|
with_items:
|
||||||
|
- curl -o install https://deb.nodesource.com/setup_12.x
|
||||||
|
- bash install
|
||||||
|
args:
|
||||||
|
chdir: /tmp
|
||||||
|
creates: /usr/bin/nodejs
|
||||||
|
|
||||||
|
# Install NodeJS 10.x LTS
|
||||||
|
- name: Installing node.js 12x LTS
|
||||||
|
apt: name=nodejs state=present
|
||||||
14
code/nodejs-8-lts/tasks/main.yml
Normal file
14
code/nodejs-8-lts/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
# Install nodesource
|
||||||
|
- name: Installing nodesource for node.js 8x LTS
|
||||||
|
command: "{{item}}"
|
||||||
|
with_items:
|
||||||
|
- curl -o install https://deb.nodesource.com/setup_8.x
|
||||||
|
- bash install
|
||||||
|
args:
|
||||||
|
chdir: /tmp
|
||||||
|
creates: /usr/bin/nodejs
|
||||||
|
|
||||||
|
# Install NodeJS 8.x LTS
|
||||||
|
- name: Installing node.js 8x LTS
|
||||||
|
apt: name=nodejs state=present
|
||||||
1918
code/php-7.0/files/debian9/cli/original-php7.0.19-php.ini
Normal file
1918
code/php-7.0/files/debian9/cli/original-php7.0.19-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
125
code/php-7.0/files/debian9/fpm/original-php7.0.19-php-fpm.conf
Normal file
125
code/php-7.0/files/debian9/fpm/original-php7.0.19-php-fpm.conf
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; FPM Configuration ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; All relative paths in this configuration file are relative to PHP's install
|
||||||
|
; prefix (/usr). This prefix can be dynamically changed by using the
|
||||||
|
; '-p' argument from the command line.
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
; Global Options ;
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
[global]
|
||||||
|
; Pid file
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: none
|
||||||
|
pid = /run/php/php7.0-fpm.pid
|
||||||
|
|
||||||
|
; Error log file
|
||||||
|
; If it's set to "syslog", log is sent to syslogd instead of being written
|
||||||
|
; in a local file.
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: log/php-fpm.log
|
||||||
|
error_log = /var/log/php7.0-fpm.log
|
||||||
|
|
||||||
|
; syslog_facility is used to specify what type of program is logging the
|
||||||
|
; message. This lets syslogd specify that messages from different facilities
|
||||||
|
; will be handled differently.
|
||||||
|
; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
|
||||||
|
; Default Value: daemon
|
||||||
|
;syslog.facility = daemon
|
||||||
|
|
||||||
|
; syslog_ident is prepended to every message. If you have multiple FPM
|
||||||
|
; instances running on the same server, you can change the default value
|
||||||
|
; which must suit common needs.
|
||||||
|
; Default Value: php-fpm
|
||||||
|
;syslog.ident = php-fpm
|
||||||
|
|
||||||
|
; Log level
|
||||||
|
; Possible Values: alert, error, warning, notice, debug
|
||||||
|
; Default Value: notice
|
||||||
|
;log_level = notice
|
||||||
|
|
||||||
|
; If this number of child processes exit with SIGSEGV or SIGBUS within the time
|
||||||
|
; interval set by emergency_restart_interval then FPM will restart. A value
|
||||||
|
; of '0' means 'Off'.
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_threshold = 0
|
||||||
|
|
||||||
|
; Interval of time used by emergency_restart_interval to determine when
|
||||||
|
; a graceful restart will be initiated. This can be useful to work around
|
||||||
|
; accidental corruptions in an accelerator's shared memory.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_interval = 0
|
||||||
|
|
||||||
|
; Time limit for child processes to wait for a reaction on signals from master.
|
||||||
|
; Available units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;process_control_timeout = 0
|
||||||
|
|
||||||
|
; The maximum number of processes FPM will fork. This has been design to control
|
||||||
|
; the global number of processes when using dynamic PM within a lot of pools.
|
||||||
|
; Use it with caution.
|
||||||
|
; Note: A value of 0 indicates no limit
|
||||||
|
; Default Value: 0
|
||||||
|
; process.max = 128
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the master process (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lower priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool process will inherit the master process priority
|
||||||
|
; unless it specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
|
||||||
|
; Default Value: yes
|
||||||
|
;daemonize = yes
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit for the master process.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit for the master process.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Specify the event mechanism FPM will use. The following is available:
|
||||||
|
; - select (any POSIX os)
|
||||||
|
; - poll (any POSIX os)
|
||||||
|
; - epoll (linux >= 2.5.44)
|
||||||
|
; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
|
||||||
|
; - /dev/poll (Solaris >= 7)
|
||||||
|
; - port (Solaris >= 10)
|
||||||
|
; Default Value: not set (auto detection)
|
||||||
|
;events.mechanism = epoll
|
||||||
|
|
||||||
|
; When FPM is build with systemd integration, specify the interval,
|
||||||
|
; in second, between health report notification to systemd.
|
||||||
|
; Set to 0 to disable.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default value: 10
|
||||||
|
;systemd_interval = 10
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Pool Definitions ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; Multiple pools of child processes may be started with different listening
|
||||||
|
; ports and different management options. The name of the pool will be
|
||||||
|
; used in logs and stats. There is no limitation on the number of pools which
|
||||||
|
; FPM can handle. Your system will tell you anyway :)
|
||||||
|
|
||||||
|
; Include one or more files. If glob(3) exists, it is used to include a bunch of
|
||||||
|
; files from a glob(3) pattern. This directive can be used everywhere in the
|
||||||
|
; file.
|
||||||
|
; Relative path can also be used. They will be prefixed by:
|
||||||
|
; - the global prefix if it's been set (-p argument)
|
||||||
|
; - /usr otherwise
|
||||||
|
include=/etc/php/7.0/fpm/pool.d/*.conf
|
||||||
1918
code/php-7.0/files/debian9/fpm/original-php7.0.19-php.ini
Normal file
1918
code/php-7.0/files/debian9/fpm/original-php7.0.19-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
413
code/php-7.0/files/debian9/fpm/original-php7.0.19-www.conf
Normal file
413
code/php-7.0/files/debian9/fpm/original-php7.0.19-www.conf
Normal file
@@ -0,0 +1,413 @@
|
|||||||
|
; Start a new pool named 'www'.
|
||||||
|
; the variable $pool can be used in any directive and will be replaced by the
|
||||||
|
; pool name ('www' here)
|
||||||
|
[www]
|
||||||
|
|
||||||
|
; Per pool prefix
|
||||||
|
; It only applies on the following directives:
|
||||||
|
; - 'access.log'
|
||||||
|
; - 'slowlog'
|
||||||
|
; - 'listen' (unixsocket)
|
||||||
|
; - 'chroot'
|
||||||
|
; - 'chdir'
|
||||||
|
; - 'php_values'
|
||||||
|
; - 'php_admin_values'
|
||||||
|
; When not set, the global prefix (or /usr) applies instead.
|
||||||
|
; Note: This directive can also be relative to the global prefix.
|
||||||
|
; Default Value: none
|
||||||
|
;prefix = /path/to/pools/$pool
|
||||||
|
|
||||||
|
; Unix user/group of processes
|
||||||
|
; Note: The user is mandatory. If the group is not set, the default user's group
|
||||||
|
; will be used.
|
||||||
|
user = www-data
|
||||||
|
group = www-data
|
||||||
|
|
||||||
|
; The address on which to accept FastCGI requests.
|
||||||
|
; Valid syntaxes are:
|
||||||
|
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
|
||||||
|
; a specific port;
|
||||||
|
; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
||||||
|
; a specific port;
|
||||||
|
; 'port' - to listen on a TCP socket to all addresses
|
||||||
|
; (IPv6 and IPv4-mapped) on a specific port;
|
||||||
|
; '/path/to/unix/socket' - to listen on a unix socket.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
listen = /run/php/php7.0-fpm.sock
|
||||||
|
|
||||||
|
; Set listen(2) backlog.
|
||||||
|
; Default Value: 511 (-1 on FreeBSD and OpenBSD)
|
||||||
|
;listen.backlog = 511
|
||||||
|
|
||||||
|
; Set permissions for unix socket, if one is used. In Linux, read/write
|
||||||
|
; permissions must be set in order to allow connections from a web server. Many
|
||||||
|
; BSD-derived systems allow connections regardless of permissions.
|
||||||
|
; Default Values: user and group are set as the running user
|
||||||
|
; mode is set to 0660
|
||||||
|
listen.owner = www-data
|
||||||
|
listen.group = www-data
|
||||||
|
;listen.mode = 0660
|
||||||
|
; When POSIX Access Control Lists are supported you can set them using
|
||||||
|
; these options, value is a comma separated list of user/group names.
|
||||||
|
; When set, listen.owner and listen.group are ignored
|
||||||
|
;listen.acl_users =
|
||||||
|
;listen.acl_groups =
|
||||||
|
|
||||||
|
; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect.
|
||||||
|
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
|
||||||
|
; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
|
||||||
|
; must be separated by a comma. If this value is left blank, connections will be
|
||||||
|
; accepted from any ip address.
|
||||||
|
; Default Value: any
|
||||||
|
;listen.allowed_clients = 127.0.0.1
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the pool processes (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lower priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool processes will inherit the master process priority
|
||||||
|
; unless it specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Choose how the process manager will control the number of child processes.
|
||||||
|
; Possible Values:
|
||||||
|
; static - a fixed number (pm.max_children) of child processes;
|
||||||
|
; dynamic - the number of child processes are set dynamically based on the
|
||||||
|
; following directives. With this process management, there will be
|
||||||
|
; always at least 1 children.
|
||||||
|
; pm.max_children - the maximum number of children that can
|
||||||
|
; be alive at the same time.
|
||||||
|
; pm.start_servers - the number of children created on startup.
|
||||||
|
; pm.min_spare_servers - the minimum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is less than this
|
||||||
|
; number then some children will be created.
|
||||||
|
; pm.max_spare_servers - the maximum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is greater than this
|
||||||
|
; number then some children will be killed.
|
||||||
|
; ondemand - no children are created at startup. Children will be forked when
|
||||||
|
; new requests will connect. The following parameter are used:
|
||||||
|
; pm.max_children - the maximum number of children that
|
||||||
|
; can be alive at the same time.
|
||||||
|
; pm.process_idle_timeout - The number of seconds after which
|
||||||
|
; an idle process will be killed.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm = dynamic
|
||||||
|
|
||||||
|
; The number of child processes to be created when pm is set to 'static' and the
|
||||||
|
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
||||||
|
; This value sets the limit on the number of simultaneous requests that will be
|
||||||
|
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
|
||||||
|
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
|
||||||
|
; CGI. The below defaults are based on a server without much resources. Don't
|
||||||
|
; forget to tweak pm.* to fit your needs.
|
||||||
|
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm.max_children = 5
|
||||||
|
|
||||||
|
; The number of child processes created on startup.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
|
||||||
|
pm.start_servers = 2
|
||||||
|
|
||||||
|
; The desired minimum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.min_spare_servers = 1
|
||||||
|
|
||||||
|
; The desired maximum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.max_spare_servers = 3
|
||||||
|
|
||||||
|
; The number of seconds after which an idle process will be killed.
|
||||||
|
; Note: Used only when pm is set to 'ondemand'
|
||||||
|
; Default Value: 10s
|
||||||
|
;pm.process_idle_timeout = 10s;
|
||||||
|
|
||||||
|
; The number of requests each child process should execute before respawning.
|
||||||
|
; This can be useful to work around memory leaks in 3rd party libraries. For
|
||||||
|
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
||||||
|
; Default Value: 0
|
||||||
|
;pm.max_requests = 500
|
||||||
|
|
||||||
|
; The URI to view the FPM status page. If this value is not set, no URI will be
|
||||||
|
; recognized as a status page. It shows the following informations:
|
||||||
|
; pool - the name of the pool;
|
||||||
|
; process manager - static, dynamic or ondemand;
|
||||||
|
; start time - the date and time FPM has started;
|
||||||
|
; start since - number of seconds since FPM has started;
|
||||||
|
; accepted conn - the number of request accepted by the pool;
|
||||||
|
; listen queue - the number of request in the queue of pending
|
||||||
|
; connections (see backlog in listen(2));
|
||||||
|
; max listen queue - the maximum number of requests in the queue
|
||||||
|
; of pending connections since FPM has started;
|
||||||
|
; listen queue len - the size of the socket queue of pending connections;
|
||||||
|
; idle processes - the number of idle processes;
|
||||||
|
; active processes - the number of active processes;
|
||||||
|
; total processes - the number of idle + active processes;
|
||||||
|
; max active processes - the maximum number of active processes since FPM
|
||||||
|
; has started;
|
||||||
|
; max children reached - number of times, the process limit has been reached,
|
||||||
|
; when pm tries to start more children (works only for
|
||||||
|
; pm 'dynamic' and 'ondemand');
|
||||||
|
; Value are updated in real time.
|
||||||
|
; Example output:
|
||||||
|
; pool: www
|
||||||
|
; process manager: static
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 62636
|
||||||
|
; accepted conn: 190460
|
||||||
|
; listen queue: 0
|
||||||
|
; max listen queue: 1
|
||||||
|
; listen queue len: 42
|
||||||
|
; idle processes: 4
|
||||||
|
; active processes: 11
|
||||||
|
; total processes: 15
|
||||||
|
; max active processes: 12
|
||||||
|
; max children reached: 0
|
||||||
|
;
|
||||||
|
; By default the status page output is formatted as text/plain. Passing either
|
||||||
|
; 'html', 'xml' or 'json' in the query string will return the corresponding
|
||||||
|
; output syntax. Example:
|
||||||
|
; http://www.foo.bar/status
|
||||||
|
; http://www.foo.bar/status?json
|
||||||
|
; http://www.foo.bar/status?html
|
||||||
|
; http://www.foo.bar/status?xml
|
||||||
|
;
|
||||||
|
; By default the status page only outputs short status. Passing 'full' in the
|
||||||
|
; query string will also return status for each pool process.
|
||||||
|
; Example:
|
||||||
|
; http://www.foo.bar/status?full
|
||||||
|
; http://www.foo.bar/status?json&full
|
||||||
|
; http://www.foo.bar/status?html&full
|
||||||
|
; http://www.foo.bar/status?xml&full
|
||||||
|
; The Full status returns for each process:
|
||||||
|
; pid - the PID of the process;
|
||||||
|
; state - the state of the process (Idle, Running, ...);
|
||||||
|
; start time - the date and time the process has started;
|
||||||
|
; start since - the number of seconds since the process has started;
|
||||||
|
; requests - the number of requests the process has served;
|
||||||
|
; request duration - the duration in µs of the requests;
|
||||||
|
; request method - the request method (GET, POST, ...);
|
||||||
|
; request URI - the request URI with the query string;
|
||||||
|
; content length - the content length of the request (only with POST);
|
||||||
|
; user - the user (PHP_AUTH_USER) (or '-' if not set);
|
||||||
|
; script - the main script called (or '-' if not set);
|
||||||
|
; last request cpu - the %cpu the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because CPU calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; last request memory - the max amount of memory the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because memory calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; If the process is in Idle state, then informations are related to the
|
||||||
|
; last request the process has served. Otherwise informations are related to
|
||||||
|
; the current request being served.
|
||||||
|
; Example output:
|
||||||
|
; ************************
|
||||||
|
; pid: 31330
|
||||||
|
; state: Running
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 63087
|
||||||
|
; requests: 12808
|
||||||
|
; request duration: 1250261
|
||||||
|
; request method: GET
|
||||||
|
; request URI: /test_mem.php?N=10000
|
||||||
|
; content length: 0
|
||||||
|
; user: -
|
||||||
|
; script: /home/fat/web/docs/php/test_mem.php
|
||||||
|
; last request cpu: 0.00
|
||||||
|
; last request memory: 0
|
||||||
|
;
|
||||||
|
; Note: There is a real-time FPM status monitoring sample web page available
|
||||||
|
; It's available in: /usr/share/php/7.0/fpm/status.html
|
||||||
|
;
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;pm.status_path = /status
|
||||||
|
|
||||||
|
; The ping URI to call the monitoring page of FPM. If this value is not set, no
|
||||||
|
; URI will be recognized as a ping page. This could be used to test from outside
|
||||||
|
; that FPM is alive and responding, or to
|
||||||
|
; - create a graph of FPM availability (rrd or such);
|
||||||
|
; - remove a server from a group if it is not responding (load balancing);
|
||||||
|
; - trigger alerts for the operating team (24/7).
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;ping.path = /ping
|
||||||
|
|
||||||
|
; This directive may be used to customize the response of a ping request. The
|
||||||
|
; response is formatted as text/plain with a 200 response code.
|
||||||
|
; Default Value: pong
|
||||||
|
;ping.response = pong
|
||||||
|
|
||||||
|
; The access log file
|
||||||
|
; Default: not set
|
||||||
|
;access.log = log/$pool.access.log
|
||||||
|
|
||||||
|
; The access log format.
|
||||||
|
; The following syntax is allowed
|
||||||
|
; %%: the '%' character
|
||||||
|
; %C: %CPU used by the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{user}C for user CPU only
|
||||||
|
; - %{system}C for system CPU only
|
||||||
|
; - %{total}C for user + system CPU (default)
|
||||||
|
; %d: time taken to serve the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{seconds}d (default)
|
||||||
|
; - %{miliseconds}d
|
||||||
|
; - %{mili}d
|
||||||
|
; - %{microseconds}d
|
||||||
|
; - %{micro}d
|
||||||
|
; %e: an environment variable (same as $_ENV or $_SERVER)
|
||||||
|
; it must be associated with embraces to specify the name of the env
|
||||||
|
; variable. Some exemples:
|
||||||
|
; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
|
||||||
|
; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
|
||||||
|
; %f: script filename
|
||||||
|
; %l: content-length of the request (for POST request only)
|
||||||
|
; %m: request method
|
||||||
|
; %M: peak of memory allocated by PHP
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{bytes}M (default)
|
||||||
|
; - %{kilobytes}M
|
||||||
|
; - %{kilo}M
|
||||||
|
; - %{megabytes}M
|
||||||
|
; - %{mega}M
|
||||||
|
; %n: pool name
|
||||||
|
; %o: output header
|
||||||
|
; it must be associated with embraces to specify the name of the header:
|
||||||
|
; - %{Content-Type}o
|
||||||
|
; - %{X-Powered-By}o
|
||||||
|
; - %{Transfert-Encoding}o
|
||||||
|
; - ....
|
||||||
|
; %p: PID of the child that serviced the request
|
||||||
|
; %P: PID of the parent of the child that serviced the request
|
||||||
|
; %q: the query string
|
||||||
|
; %Q: the '?' character if query string exists
|
||||||
|
; %r: the request URI (without the query string, see %q and %Q)
|
||||||
|
; %R: remote IP address
|
||||||
|
; %s: status (response code)
|
||||||
|
; %t: server time the request was received
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %T: time the log has been written (the request has finished)
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %u: remote user
|
||||||
|
;
|
||||||
|
; Default: "%R - %u %t \"%m %r\" %s"
|
||||||
|
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
|
||||||
|
|
||||||
|
; The log file for slow requests
|
||||||
|
; Default Value: not set
|
||||||
|
; Note: slowlog is mandatory if request_slowlog_timeout is set
|
||||||
|
;slowlog = log/$pool.log.slow
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which a PHP backtrace will be
|
||||||
|
; dumped to the 'slowlog' file. A value of '0s' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_slowlog_timeout = 0
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which the worker process will
|
||||||
|
; be killed. This option should be used when the 'max_execution_time' ini option
|
||||||
|
; does not stop script execution for some reason. A value of '0' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_terminate_timeout = 0
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Chroot to this directory at the start. This value must be defined as an
|
||||||
|
; absolute path. When this value is not set, chroot is not used.
|
||||||
|
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
|
||||||
|
; of its subdirectories. If the pool prefix is not set, the global prefix
|
||||||
|
; will be used instead.
|
||||||
|
; Note: chrooting is a great security feature and should be used whenever
|
||||||
|
; possible. However, all PHP paths will be relative to the chroot
|
||||||
|
; (error_log, sessions.save_path, ...).
|
||||||
|
; Default Value: not set
|
||||||
|
;chroot =
|
||||||
|
|
||||||
|
; Chdir to this directory at the start.
|
||||||
|
; Note: relative path can be used.
|
||||||
|
; Default Value: current directory or / when chroot
|
||||||
|
;chdir = /var/www
|
||||||
|
|
||||||
|
; Redirect worker stdout and stderr into main error log. If not set, stdout and
|
||||||
|
; stderr will be redirected to /dev/null according to FastCGI specs.
|
||||||
|
; Note: on highloaded environement, this can cause some delay in the page
|
||||||
|
; process time (several ms).
|
||||||
|
; Default Value: no
|
||||||
|
;catch_workers_output = yes
|
||||||
|
|
||||||
|
; Clear environment in FPM workers
|
||||||
|
; Prevents arbitrary environment variables from reaching FPM worker processes
|
||||||
|
; by clearing the environment in workers before env vars specified in this
|
||||||
|
; pool configuration are added.
|
||||||
|
; Setting to "no" will make all environment variables available to PHP code
|
||||||
|
; via getenv(), $_ENV and $_SERVER.
|
||||||
|
; Default Value: yes
|
||||||
|
;clear_env = no
|
||||||
|
|
||||||
|
; Limits the extensions of the main script FPM will allow to parse. This can
|
||||||
|
; prevent configuration mistakes on the web server side. You should only limit
|
||||||
|
; FPM to .php extensions to prevent malicious users to use other extensions to
|
||||||
|
; exectute php code.
|
||||||
|
; Note: set an empty value to allow all extensions.
|
||||||
|
; Default Value: .php
|
||||||
|
;security.limit_extensions = .php .php3 .php4 .php5 .php7
|
||||||
|
|
||||||
|
; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
|
||||||
|
; the current environment.
|
||||||
|
; Default Value: clean env
|
||||||
|
;env[HOSTNAME] = $HOSTNAME
|
||||||
|
;env[PATH] = /usr/local/bin:/usr/bin:/bin
|
||||||
|
;env[TMP] = /tmp
|
||||||
|
;env[TMPDIR] = /tmp
|
||||||
|
;env[TEMP] = /tmp
|
||||||
|
|
||||||
|
; Additional php.ini defines, specific to this pool of workers. These settings
|
||||||
|
; overwrite the values previously defined in the php.ini. The directives are the
|
||||||
|
; same as the PHP SAPI:
|
||||||
|
; php_value/php_flag - you can set classic ini defines which can
|
||||||
|
; be overwritten from PHP call 'ini_set'.
|
||||||
|
; php_admin_value/php_admin_flag - these directives won't be overwritten by
|
||||||
|
; PHP call 'ini_set'
|
||||||
|
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
|
||||||
|
|
||||||
|
; Defining 'extension' will load the corresponding shared extension from
|
||||||
|
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
|
||||||
|
; overwrite previously defined php.ini values, but will append the new value
|
||||||
|
; instead.
|
||||||
|
|
||||||
|
; Note: path INI options can be relative and will be expanded with the prefix
|
||||||
|
; (pool, global or /usr)
|
||||||
|
|
||||||
|
; Default Value: nothing is defined by default except the values in php.ini and
|
||||||
|
; specified at startup with the -d argument
|
||||||
|
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
|
||||||
|
;php_flag[display_errors] = off
|
||||||
|
;php_admin_value[error_log] = /var/log/fpm-php.www.log
|
||||||
|
;php_admin_flag[log_errors] = on
|
||||||
|
;php_admin_value[memory_limit] = 32M
|
||||||
3
code/php-7.0/handlers/main.yml
Normal file
3
code/php-7.0/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart php
|
||||||
|
service: name=php7.0-fpm state=restarted
|
||||||
44
code/php-7.0/tasks/install-debian.yml
Normal file
44
code/php-7.0/tasks/install-debian.yml
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
# We use the sury.org PHP repositories which contains many versions of PHP
|
||||||
|
# All of these versions will be newer than comes stock with debian
|
||||||
|
|
||||||
|
# Add sury.org GPG keys
|
||||||
|
- name: Addding sury.org PHP sources GPG key
|
||||||
|
apt_key: url='https://packages.sury.org/php/apt.gpg' state=present
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 8 Jessie
|
||||||
|
- name: Adding sury.org PHP sources for Debian 8 Jessie
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ jessie main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "8"
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 9 Stretch
|
||||||
|
- name: Adding sury.org PHP sources for Debian 9 Stretch
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ stretch main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install PHP 7.0
|
||||||
|
- name: Installing PHP 7.0
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- php7.0-bcmath
|
||||||
|
- php7.0-bz2
|
||||||
|
- php7.0-cli
|
||||||
|
- php7.0-common
|
||||||
|
- php7.0-curl
|
||||||
|
- php7.0-fpm
|
||||||
|
- php7.0-gd
|
||||||
|
- php7.0-imap
|
||||||
|
- php7.0-intl
|
||||||
|
- php7.0-json
|
||||||
|
- php7.0-ldap
|
||||||
|
- php7.0-mbstring
|
||||||
|
- php7.0-mcrypt
|
||||||
|
- php7.0-mysql
|
||||||
|
- php7.0-opcache
|
||||||
|
- php7.0-readline
|
||||||
|
- php7.0-soap
|
||||||
|
- php7.0-sybase
|
||||||
|
- php7.0-xml
|
||||||
|
- php7.0-zip
|
||||||
6
code/php-7.0/tasks/main.yml
Normal file
6
code/php-7.0/tasks/main.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
# php-7.0
|
||||||
|
|
||||||
|
# Install PHP 7.0 - Debian All Versions
|
||||||
|
- include_tasks: install-debian.yml
|
||||||
|
when: ansible_os_family == "Debian"
|
||||||
1937
code/php-7.1/files/debian9/apache2/php.ini
Normal file
1937
code/php-7.1/files/debian9/apache2/php.ini
Normal file
File diff suppressed because it is too large
Load Diff
1933
code/php-7.1/files/debian9/cli/original-php7.1.13-php.ini
Normal file
1933
code/php-7.1/files/debian9/cli/original-php7.1.13-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
125
code/php-7.1/files/debian9/fpm/original-php7.1.13-php-fpm.conf
Normal file
125
code/php-7.1/files/debian9/fpm/original-php7.1.13-php-fpm.conf
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; FPM Configuration ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; All relative paths in this configuration file are relative to PHP's install
|
||||||
|
; prefix (/usr). This prefix can be dynamically changed by using the
|
||||||
|
; '-p' argument from the command line.
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
; Global Options ;
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
[global]
|
||||||
|
; Pid file
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: none
|
||||||
|
pid = /run/php/php7.1-fpm.pid
|
||||||
|
|
||||||
|
; Error log file
|
||||||
|
; If it's set to "syslog", log is sent to syslogd instead of being written
|
||||||
|
; into a local file.
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: log/php-fpm.log
|
||||||
|
error_log = /var/log/php7.1-fpm.log
|
||||||
|
|
||||||
|
; syslog_facility is used to specify what type of program is logging the
|
||||||
|
; message. This lets syslogd specify that messages from different facilities
|
||||||
|
; will be handled differently.
|
||||||
|
; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
|
||||||
|
; Default Value: daemon
|
||||||
|
;syslog.facility = daemon
|
||||||
|
|
||||||
|
; syslog_ident is prepended to every message. If you have multiple FPM
|
||||||
|
; instances running on the same server, you can change the default value
|
||||||
|
; which must suit common needs.
|
||||||
|
; Default Value: php-fpm
|
||||||
|
;syslog.ident = php-fpm
|
||||||
|
|
||||||
|
; Log level
|
||||||
|
; Possible Values: alert, error, warning, notice, debug
|
||||||
|
; Default Value: notice
|
||||||
|
;log_level = notice
|
||||||
|
|
||||||
|
; If this number of child processes exit with SIGSEGV or SIGBUS within the time
|
||||||
|
; interval set by emergency_restart_interval then FPM will restart. A value
|
||||||
|
; of '0' means 'Off'.
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_threshold = 0
|
||||||
|
|
||||||
|
; Interval of time used by emergency_restart_interval to determine when
|
||||||
|
; a graceful restart will be initiated. This can be useful to work around
|
||||||
|
; accidental corruptions in an accelerator's shared memory.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_interval = 0
|
||||||
|
|
||||||
|
; Time limit for child processes to wait for a reaction on signals from master.
|
||||||
|
; Available units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;process_control_timeout = 0
|
||||||
|
|
||||||
|
; The maximum number of processes FPM will fork. This has been designed to control
|
||||||
|
; the global number of processes when using dynamic PM within a lot of pools.
|
||||||
|
; Use it with caution.
|
||||||
|
; Note: A value of 0 indicates no limit
|
||||||
|
; Default Value: 0
|
||||||
|
; process.max = 128
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the master process (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lowest priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool process will inherit the master process priority
|
||||||
|
; unless specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
|
||||||
|
; Default Value: yes
|
||||||
|
;daemonize = yes
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit for the master process.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit for the master process.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Specify the event mechanism FPM will use. The following is available:
|
||||||
|
; - select (any POSIX os)
|
||||||
|
; - poll (any POSIX os)
|
||||||
|
; - epoll (linux >= 2.5.44)
|
||||||
|
; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
|
||||||
|
; - /dev/poll (Solaris >= 7)
|
||||||
|
; - port (Solaris >= 10)
|
||||||
|
; Default Value: not set (auto detection)
|
||||||
|
;events.mechanism = epoll
|
||||||
|
|
||||||
|
; When FPM is built with systemd integration, specify the interval,
|
||||||
|
; in seconds, between health report notification to systemd.
|
||||||
|
; Set to 0 to disable.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default value: 10
|
||||||
|
;systemd_interval = 10
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Pool Definitions ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; Multiple pools of child processes may be started with different listening
|
||||||
|
; ports and different management options. The name of the pool will be
|
||||||
|
; used in logs and stats. There is no limitation on the number of pools which
|
||||||
|
; FPM can handle. Your system will tell you anyway :)
|
||||||
|
|
||||||
|
; Include one or more files. If glob(3) exists, it is used to include a bunch of
|
||||||
|
; files from a glob(3) pattern. This directive can be used everywhere in the
|
||||||
|
; file.
|
||||||
|
; Relative path can also be used. They will be prefixed by:
|
||||||
|
; - the global prefix if it's been set (-p argument)
|
||||||
|
; - /usr otherwise
|
||||||
|
include=/etc/php/7.1/fpm/pool.d/*.conf
|
||||||
1933
code/php-7.1/files/debian9/fpm/original-php7.1.13-php.ini
Normal file
1933
code/php-7.1/files/debian9/fpm/original-php7.1.13-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
413
code/php-7.1/files/debian9/fpm/original-php7.1.13-www.conf
Normal file
413
code/php-7.1/files/debian9/fpm/original-php7.1.13-www.conf
Normal file
@@ -0,0 +1,413 @@
|
|||||||
|
; Start a new pool named 'www'.
|
||||||
|
; the variable $pool can be used in any directive and will be replaced by the
|
||||||
|
; pool name ('www' here)
|
||||||
|
[www]
|
||||||
|
|
||||||
|
; Per pool prefix
|
||||||
|
; It only applies on the following directives:
|
||||||
|
; - 'access.log'
|
||||||
|
; - 'slowlog'
|
||||||
|
; - 'listen' (unixsocket)
|
||||||
|
; - 'chroot'
|
||||||
|
; - 'chdir'
|
||||||
|
; - 'php_values'
|
||||||
|
; - 'php_admin_values'
|
||||||
|
; When not set, the global prefix (or /usr) applies instead.
|
||||||
|
; Note: This directive can also be relative to the global prefix.
|
||||||
|
; Default Value: none
|
||||||
|
;prefix = /path/to/pools/$pool
|
||||||
|
|
||||||
|
; Unix user/group of processes
|
||||||
|
; Note: The user is mandatory. If the group is not set, the default user's group
|
||||||
|
; will be used.
|
||||||
|
user = www-data
|
||||||
|
group = www-data
|
||||||
|
|
||||||
|
; The address on which to accept FastCGI requests.
|
||||||
|
; Valid syntaxes are:
|
||||||
|
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
|
||||||
|
; a specific port;
|
||||||
|
; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
||||||
|
; a specific port;
|
||||||
|
; 'port' - to listen on a TCP socket to all addresses
|
||||||
|
; (IPv6 and IPv4-mapped) on a specific port;
|
||||||
|
; '/path/to/unix/socket' - to listen on a unix socket.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
listen = /run/php/php7.1-fpm.sock
|
||||||
|
|
||||||
|
; Set listen(2) backlog.
|
||||||
|
; Default Value: 511 (-1 on FreeBSD and OpenBSD)
|
||||||
|
;listen.backlog = 511
|
||||||
|
|
||||||
|
; Set permissions for unix socket, if one is used. In Linux, read/write
|
||||||
|
; permissions must be set in order to allow connections from a web server. Many
|
||||||
|
; BSD-derived systems allow connections regardless of permissions.
|
||||||
|
; Default Values: user and group are set as the running user
|
||||||
|
; mode is set to 0660
|
||||||
|
listen.owner = www-data
|
||||||
|
listen.group = www-data
|
||||||
|
;listen.mode = 0660
|
||||||
|
; When POSIX Access Control Lists are supported you can set them using
|
||||||
|
; these options, value is a comma separated list of user/group names.
|
||||||
|
; When set, listen.owner and listen.group are ignored
|
||||||
|
;listen.acl_users =
|
||||||
|
;listen.acl_groups =
|
||||||
|
|
||||||
|
; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect.
|
||||||
|
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
|
||||||
|
; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
|
||||||
|
; must be separated by a comma. If this value is left blank, connections will be
|
||||||
|
; accepted from any ip address.
|
||||||
|
; Default Value: any
|
||||||
|
;listen.allowed_clients = 127.0.0.1
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the pool processes (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lower priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool processes will inherit the master process priority
|
||||||
|
; unless it specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Choose how the process manager will control the number of child processes.
|
||||||
|
; Possible Values:
|
||||||
|
; static - a fixed number (pm.max_children) of child processes;
|
||||||
|
; dynamic - the number of child processes are set dynamically based on the
|
||||||
|
; following directives. With this process management, there will be
|
||||||
|
; always at least 1 children.
|
||||||
|
; pm.max_children - the maximum number of children that can
|
||||||
|
; be alive at the same time.
|
||||||
|
; pm.start_servers - the number of children created on startup.
|
||||||
|
; pm.min_spare_servers - the minimum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is less than this
|
||||||
|
; number then some children will be created.
|
||||||
|
; pm.max_spare_servers - the maximum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is greater than this
|
||||||
|
; number then some children will be killed.
|
||||||
|
; ondemand - no children are created at startup. Children will be forked when
|
||||||
|
; new requests will connect. The following parameter are used:
|
||||||
|
; pm.max_children - the maximum number of children that
|
||||||
|
; can be alive at the same time.
|
||||||
|
; pm.process_idle_timeout - The number of seconds after which
|
||||||
|
; an idle process will be killed.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm = dynamic
|
||||||
|
|
||||||
|
; The number of child processes to be created when pm is set to 'static' and the
|
||||||
|
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
||||||
|
; This value sets the limit on the number of simultaneous requests that will be
|
||||||
|
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
|
||||||
|
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
|
||||||
|
; CGI. The below defaults are based on a server without much resources. Don't
|
||||||
|
; forget to tweak pm.* to fit your needs.
|
||||||
|
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm.max_children = 5
|
||||||
|
|
||||||
|
; The number of child processes created on startup.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
|
||||||
|
pm.start_servers = 2
|
||||||
|
|
||||||
|
; The desired minimum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.min_spare_servers = 1
|
||||||
|
|
||||||
|
; The desired maximum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.max_spare_servers = 3
|
||||||
|
|
||||||
|
; The number of seconds after which an idle process will be killed.
|
||||||
|
; Note: Used only when pm is set to 'ondemand'
|
||||||
|
; Default Value: 10s
|
||||||
|
;pm.process_idle_timeout = 10s;
|
||||||
|
|
||||||
|
; The number of requests each child process should execute before respawning.
|
||||||
|
; This can be useful to work around memory leaks in 3rd party libraries. For
|
||||||
|
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
||||||
|
; Default Value: 0
|
||||||
|
;pm.max_requests = 500
|
||||||
|
|
||||||
|
; The URI to view the FPM status page. If this value is not set, no URI will be
|
||||||
|
; recognized as a status page. It shows the following informations:
|
||||||
|
; pool - the name of the pool;
|
||||||
|
; process manager - static, dynamic or ondemand;
|
||||||
|
; start time - the date and time FPM has started;
|
||||||
|
; start since - number of seconds since FPM has started;
|
||||||
|
; accepted conn - the number of request accepted by the pool;
|
||||||
|
; listen queue - the number of request in the queue of pending
|
||||||
|
; connections (see backlog in listen(2));
|
||||||
|
; max listen queue - the maximum number of requests in the queue
|
||||||
|
; of pending connections since FPM has started;
|
||||||
|
; listen queue len - the size of the socket queue of pending connections;
|
||||||
|
; idle processes - the number of idle processes;
|
||||||
|
; active processes - the number of active processes;
|
||||||
|
; total processes - the number of idle + active processes;
|
||||||
|
; max active processes - the maximum number of active processes since FPM
|
||||||
|
; has started;
|
||||||
|
; max children reached - number of times, the process limit has been reached,
|
||||||
|
; when pm tries to start more children (works only for
|
||||||
|
; pm 'dynamic' and 'ondemand');
|
||||||
|
; Value are updated in real time.
|
||||||
|
; Example output:
|
||||||
|
; pool: www
|
||||||
|
; process manager: static
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 62636
|
||||||
|
; accepted conn: 190460
|
||||||
|
; listen queue: 0
|
||||||
|
; max listen queue: 1
|
||||||
|
; listen queue len: 42
|
||||||
|
; idle processes: 4
|
||||||
|
; active processes: 11
|
||||||
|
; total processes: 15
|
||||||
|
; max active processes: 12
|
||||||
|
; max children reached: 0
|
||||||
|
;
|
||||||
|
; By default the status page output is formatted as text/plain. Passing either
|
||||||
|
; 'html', 'xml' or 'json' in the query string will return the corresponding
|
||||||
|
; output syntax. Example:
|
||||||
|
; http://www.foo.bar/status
|
||||||
|
; http://www.foo.bar/status?json
|
||||||
|
; http://www.foo.bar/status?html
|
||||||
|
; http://www.foo.bar/status?xml
|
||||||
|
;
|
||||||
|
; By default the status page only outputs short status. Passing 'full' in the
|
||||||
|
; query string will also return status for each pool process.
|
||||||
|
; Example:
|
||||||
|
; http://www.foo.bar/status?full
|
||||||
|
; http://www.foo.bar/status?json&full
|
||||||
|
; http://www.foo.bar/status?html&full
|
||||||
|
; http://www.foo.bar/status?xml&full
|
||||||
|
; The Full status returns for each process:
|
||||||
|
; pid - the PID of the process;
|
||||||
|
; state - the state of the process (Idle, Running, ...);
|
||||||
|
; start time - the date and time the process has started;
|
||||||
|
; start since - the number of seconds since the process has started;
|
||||||
|
; requests - the number of requests the process has served;
|
||||||
|
; request duration - the duration in µs of the requests;
|
||||||
|
; request method - the request method (GET, POST, ...);
|
||||||
|
; request URI - the request URI with the query string;
|
||||||
|
; content length - the content length of the request (only with POST);
|
||||||
|
; user - the user (PHP_AUTH_USER) (or '-' if not set);
|
||||||
|
; script - the main script called (or '-' if not set);
|
||||||
|
; last request cpu - the %cpu the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because CPU calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; last request memory - the max amount of memory the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because memory calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; If the process is in Idle state, then informations are related to the
|
||||||
|
; last request the process has served. Otherwise informations are related to
|
||||||
|
; the current request being served.
|
||||||
|
; Example output:
|
||||||
|
; ************************
|
||||||
|
; pid: 31330
|
||||||
|
; state: Running
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 63087
|
||||||
|
; requests: 12808
|
||||||
|
; request duration: 1250261
|
||||||
|
; request method: GET
|
||||||
|
; request URI: /test_mem.php?N=10000
|
||||||
|
; content length: 0
|
||||||
|
; user: -
|
||||||
|
; script: /home/fat/web/docs/php/test_mem.php
|
||||||
|
; last request cpu: 0.00
|
||||||
|
; last request memory: 0
|
||||||
|
;
|
||||||
|
; Note: There is a real-time FPM status monitoring sample web page available
|
||||||
|
; It's available in: /usr/share/php/7.1/fpm/status.html
|
||||||
|
;
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;pm.status_path = /status
|
||||||
|
|
||||||
|
; The ping URI to call the monitoring page of FPM. If this value is not set, no
|
||||||
|
; URI will be recognized as a ping page. This could be used to test from outside
|
||||||
|
; that FPM is alive and responding, or to
|
||||||
|
; - create a graph of FPM availability (rrd or such);
|
||||||
|
; - remove a server from a group if it is not responding (load balancing);
|
||||||
|
; - trigger alerts for the operating team (24/7).
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;ping.path = /ping
|
||||||
|
|
||||||
|
; This directive may be used to customize the response of a ping request. The
|
||||||
|
; response is formatted as text/plain with a 200 response code.
|
||||||
|
; Default Value: pong
|
||||||
|
;ping.response = pong
|
||||||
|
|
||||||
|
; The access log file
|
||||||
|
; Default: not set
|
||||||
|
;access.log = log/$pool.access.log
|
||||||
|
|
||||||
|
; The access log format.
|
||||||
|
; The following syntax is allowed
|
||||||
|
; %%: the '%' character
|
||||||
|
; %C: %CPU used by the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{user}C for user CPU only
|
||||||
|
; - %{system}C for system CPU only
|
||||||
|
; - %{total}C for user + system CPU (default)
|
||||||
|
; %d: time taken to serve the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{seconds}d (default)
|
||||||
|
; - %{miliseconds}d
|
||||||
|
; - %{mili}d
|
||||||
|
; - %{microseconds}d
|
||||||
|
; - %{micro}d
|
||||||
|
; %e: an environment variable (same as $_ENV or $_SERVER)
|
||||||
|
; it must be associated with embraces to specify the name of the env
|
||||||
|
; variable. Some exemples:
|
||||||
|
; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
|
||||||
|
; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
|
||||||
|
; %f: script filename
|
||||||
|
; %l: content-length of the request (for POST request only)
|
||||||
|
; %m: request method
|
||||||
|
; %M: peak of memory allocated by PHP
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{bytes}M (default)
|
||||||
|
; - %{kilobytes}M
|
||||||
|
; - %{kilo}M
|
||||||
|
; - %{megabytes}M
|
||||||
|
; - %{mega}M
|
||||||
|
; %n: pool name
|
||||||
|
; %o: output header
|
||||||
|
; it must be associated with embraces to specify the name of the header:
|
||||||
|
; - %{Content-Type}o
|
||||||
|
; - %{X-Powered-By}o
|
||||||
|
; - %{Transfert-Encoding}o
|
||||||
|
; - ....
|
||||||
|
; %p: PID of the child that serviced the request
|
||||||
|
; %P: PID of the parent of the child that serviced the request
|
||||||
|
; %q: the query string
|
||||||
|
; %Q: the '?' character if query string exists
|
||||||
|
; %r: the request URI (without the query string, see %q and %Q)
|
||||||
|
; %R: remote IP address
|
||||||
|
; %s: status (response code)
|
||||||
|
; %t: server time the request was received
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %T: time the log has been written (the request has finished)
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %u: remote user
|
||||||
|
;
|
||||||
|
; Default: "%R - %u %t \"%m %r\" %s"
|
||||||
|
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
|
||||||
|
|
||||||
|
; The log file for slow requests
|
||||||
|
; Default Value: not set
|
||||||
|
; Note: slowlog is mandatory if request_slowlog_timeout is set
|
||||||
|
;slowlog = log/$pool.log.slow
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which a PHP backtrace will be
|
||||||
|
; dumped to the 'slowlog' file. A value of '0s' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_slowlog_timeout = 0
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which the worker process will
|
||||||
|
; be killed. This option should be used when the 'max_execution_time' ini option
|
||||||
|
; does not stop script execution for some reason. A value of '0' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_terminate_timeout = 0
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Chroot to this directory at the start. This value must be defined as an
|
||||||
|
; absolute path. When this value is not set, chroot is not used.
|
||||||
|
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
|
||||||
|
; of its subdirectories. If the pool prefix is not set, the global prefix
|
||||||
|
; will be used instead.
|
||||||
|
; Note: chrooting is a great security feature and should be used whenever
|
||||||
|
; possible. However, all PHP paths will be relative to the chroot
|
||||||
|
; (error_log, sessions.save_path, ...).
|
||||||
|
; Default Value: not set
|
||||||
|
;chroot =
|
||||||
|
|
||||||
|
; Chdir to this directory at the start.
|
||||||
|
; Note: relative path can be used.
|
||||||
|
; Default Value: current directory or / when chroot
|
||||||
|
;chdir = /var/www
|
||||||
|
|
||||||
|
; Redirect worker stdout and stderr into main error log. If not set, stdout and
|
||||||
|
; stderr will be redirected to /dev/null according to FastCGI specs.
|
||||||
|
; Note: on highloaded environement, this can cause some delay in the page
|
||||||
|
; process time (several ms).
|
||||||
|
; Default Value: no
|
||||||
|
;catch_workers_output = yes
|
||||||
|
|
||||||
|
; Clear environment in FPM workers
|
||||||
|
; Prevents arbitrary environment variables from reaching FPM worker processes
|
||||||
|
; by clearing the environment in workers before env vars specified in this
|
||||||
|
; pool configuration are added.
|
||||||
|
; Setting to "no" will make all environment variables available to PHP code
|
||||||
|
; via getenv(), $_ENV and $_SERVER.
|
||||||
|
; Default Value: yes
|
||||||
|
;clear_env = no
|
||||||
|
|
||||||
|
; Limits the extensions of the main script FPM will allow to parse. This can
|
||||||
|
; prevent configuration mistakes on the web server side. You should only limit
|
||||||
|
; FPM to .php extensions to prevent malicious users to use other extensions to
|
||||||
|
; execute php code.
|
||||||
|
; Note: set an empty value to allow all extensions.
|
||||||
|
; Default Value: .php
|
||||||
|
;security.limit_extensions = .php .php3 .php4 .php5 .php7
|
||||||
|
|
||||||
|
; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
|
||||||
|
; the current environment.
|
||||||
|
; Default Value: clean env
|
||||||
|
;env[HOSTNAME] = $HOSTNAME
|
||||||
|
;env[PATH] = /usr/local/bin:/usr/bin:/bin
|
||||||
|
;env[TMP] = /tmp
|
||||||
|
;env[TMPDIR] = /tmp
|
||||||
|
;env[TEMP] = /tmp
|
||||||
|
|
||||||
|
; Additional php.ini defines, specific to this pool of workers. These settings
|
||||||
|
; overwrite the values previously defined in the php.ini. The directives are the
|
||||||
|
; same as the PHP SAPI:
|
||||||
|
; php_value/php_flag - you can set classic ini defines which can
|
||||||
|
; be overwritten from PHP call 'ini_set'.
|
||||||
|
; php_admin_value/php_admin_flag - these directives won't be overwritten by
|
||||||
|
; PHP call 'ini_set'
|
||||||
|
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
|
||||||
|
|
||||||
|
; Defining 'extension' will load the corresponding shared extension from
|
||||||
|
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
|
||||||
|
; overwrite previously defined php.ini values, but will append the new value
|
||||||
|
; instead.
|
||||||
|
|
||||||
|
; Note: path INI options can be relative and will be expanded with the prefix
|
||||||
|
; (pool, global or /usr)
|
||||||
|
|
||||||
|
; Default Value: nothing is defined by default except the values in php.ini and
|
||||||
|
; specified at startup with the -d argument
|
||||||
|
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
|
||||||
|
;php_flag[display_errors] = off
|
||||||
|
;php_admin_value[error_log] = /var/log/fpm-php.www.log
|
||||||
|
;php_admin_flag[log_errors] = on
|
||||||
|
;php_admin_value[memory_limit] = 32M
|
||||||
3
code/php-7.1/files/debian9/mods-available/bcmath.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/bcmath.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php bcmath module
|
||||||
|
; priority=20
|
||||||
|
extension=bcmath.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/calendar.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/calendar.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=calendar.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/ctype.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/ctype.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=ctype.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/curl.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/curl.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php curl module
|
||||||
|
; priority=20
|
||||||
|
extension=curl.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/dom.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/dom.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=dom.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/exif.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/exif.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=exif.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/fileinfo.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/fileinfo.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=fileinfo.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/ftp.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/ftp.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=ftp.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/gd.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/gd.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php gd module
|
||||||
|
; priority=20
|
||||||
|
extension=gd.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/gettext.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/gettext.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=gettext.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/gmp.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/gmp.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php gmp module
|
||||||
|
; priority=20
|
||||||
|
extension=gmp.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/iconv.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/iconv.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=iconv.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/imap.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/imap.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php imap module
|
||||||
|
; priority=20
|
||||||
|
extension=imap.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/json.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/json.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php json module
|
||||||
|
; priority=20
|
||||||
|
extension=json.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/mbstring.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/mbstring.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php mbstring module
|
||||||
|
; priority=20
|
||||||
|
extension=mbstring.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/mcrypt.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/mcrypt.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php mcrypt module
|
||||||
|
; priority=20
|
||||||
|
extension=mcrypt.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/mysqli.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/mysqli.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php mysql module
|
||||||
|
; priority=20
|
||||||
|
extension=mysqli.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/mysqlnd.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/mysqlnd.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php mysql module
|
||||||
|
; priority=10
|
||||||
|
extension=mysqlnd.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/opcache.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/opcache.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php opcache module
|
||||||
|
; priority=10
|
||||||
|
zend_extension=opcache.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/pdo.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/pdo.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=10
|
||||||
|
extension=pdo.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/pdo_dblib.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/pdo_dblib.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php sybase module
|
||||||
|
; priority=20
|
||||||
|
extension=pdo_dblib.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/pdo_mysql.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/pdo_mysql.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php mysql module
|
||||||
|
; priority=20
|
||||||
|
extension=pdo_mysql.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/phar.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/phar.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=phar.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/posix.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/posix.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=posix.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/readline.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/readline.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php readline module
|
||||||
|
; priority=20
|
||||||
|
extension=readline.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/shmop.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/shmop.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=shmop.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/simplexml.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/simplexml.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=simplexml.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/soap.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/soap.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php soap module
|
||||||
|
; priority=20
|
||||||
|
extension=soap.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/sockets.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/sockets.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=sockets.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/sysvmsg.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/sysvmsg.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=sysvmsg.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/sysvsem.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/sysvsem.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=sysvsem.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/sysvshm.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/sysvshm.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=sysvshm.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/tokenizer.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/tokenizer.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php common module
|
||||||
|
; priority=20
|
||||||
|
extension=tokenizer.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/wddx.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/wddx.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=wddx.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/xml.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/xml.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=15
|
||||||
|
extension=xml.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/xmlreader.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/xmlreader.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=xmlreader.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/xmlwriter.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/xmlwriter.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=xmlwriter.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/xsl.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/xsl.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php xml module
|
||||||
|
; priority=20
|
||||||
|
extension=xsl.so
|
||||||
3
code/php-7.1/files/debian9/mods-available/zip.ini
Normal file
3
code/php-7.1/files/debian9/mods-available/zip.ini
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
; configuration for php zip module
|
||||||
|
; priority=20
|
||||||
|
extension=zip.so
|
||||||
3
code/php-7.1/handlers/main.yml
Normal file
3
code/php-7.1/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart php
|
||||||
|
service: name=php7.1-fpm state=restarted
|
||||||
46
code/php-7.1/tasks/install-debian.yml
Normal file
46
code/php-7.1/tasks/install-debian.yml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
# Debian 9 Stretch ONLY
|
||||||
|
|
||||||
|
# We use the sury.org PHP repositories which contains many versions of PHP
|
||||||
|
# All of these versions will be newere than comes stock with debian
|
||||||
|
|
||||||
|
# Add sury.org GPG keys
|
||||||
|
- name: Addding sury.org PHP sources GPG key
|
||||||
|
apt_key: url='https://packages.sury.org/php/apt.gpg' state=present
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 8 Jessie
|
||||||
|
- name: Adding sury.org PHP sources for Debian 8 Jessie
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ jessie main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "8"
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 9 Stretch
|
||||||
|
- name: Adding sury.org PHP sources for Debian 9 Stretch
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ stretch main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install PHP 7.1
|
||||||
|
- name: Installing PHP 7.1
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- php7.1-bcmath
|
||||||
|
- php7.1-bz2
|
||||||
|
- php7.1-cli
|
||||||
|
- php7.1-common
|
||||||
|
- php7.1-curl
|
||||||
|
- php7.1-fpm
|
||||||
|
- php7.1-gd
|
||||||
|
- php7.1-imap
|
||||||
|
- php7.1-intl
|
||||||
|
- php7.1-json
|
||||||
|
- php7.1-ldap
|
||||||
|
- php7.1-mbstring
|
||||||
|
- php7.1-mcrypt
|
||||||
|
- php7.1-mysql
|
||||||
|
- php7.1-opcache
|
||||||
|
- php7.1-readline
|
||||||
|
- php7.1-soap
|
||||||
|
- php7.1-sybase
|
||||||
|
- php7.1-xml
|
||||||
|
- php7.1-zip
|
||||||
6
code/php-7.1/tasks/main.yml
Normal file
6
code/php-7.1/tasks/main.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
# php-7.1
|
||||||
|
|
||||||
|
# Install PHP 7.1 - Debian All Versions
|
||||||
|
- include_tasks: install-debian.yml
|
||||||
|
when: ansible_os_family == "Debian"
|
||||||
1914
code/php-7.2/files/debian9/cli/original-php7.2.2-php.ini
Normal file
1914
code/php-7.2/files/debian9/cli/original-php7.2.2-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
125
code/php-7.2/files/debian9/fpm/original-php7.2.2-php-fpm.conf
Normal file
125
code/php-7.2/files/debian9/fpm/original-php7.2.2-php-fpm.conf
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; FPM Configuration ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; All relative paths in this configuration file are relative to PHP's install
|
||||||
|
; prefix (/usr). This prefix can be dynamically changed by using the
|
||||||
|
; '-p' argument from the command line.
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
; Global Options ;
|
||||||
|
;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
[global]
|
||||||
|
; Pid file
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: none
|
||||||
|
pid = /run/php/php7.2-fpm.pid
|
||||||
|
|
||||||
|
; Error log file
|
||||||
|
; If it's set to "syslog", log is sent to syslogd instead of being written
|
||||||
|
; into a local file.
|
||||||
|
; Note: the default prefix is /var
|
||||||
|
; Default Value: log/php-fpm.log
|
||||||
|
error_log = /var/log/php7.2-fpm.log
|
||||||
|
|
||||||
|
; syslog_facility is used to specify what type of program is logging the
|
||||||
|
; message. This lets syslogd specify that messages from different facilities
|
||||||
|
; will be handled differently.
|
||||||
|
; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)
|
||||||
|
; Default Value: daemon
|
||||||
|
;syslog.facility = daemon
|
||||||
|
|
||||||
|
; syslog_ident is prepended to every message. If you have multiple FPM
|
||||||
|
; instances running on the same server, you can change the default value
|
||||||
|
; which must suit common needs.
|
||||||
|
; Default Value: php-fpm
|
||||||
|
;syslog.ident = php-fpm
|
||||||
|
|
||||||
|
; Log level
|
||||||
|
; Possible Values: alert, error, warning, notice, debug
|
||||||
|
; Default Value: notice
|
||||||
|
;log_level = notice
|
||||||
|
|
||||||
|
; If this number of child processes exit with SIGSEGV or SIGBUS within the time
|
||||||
|
; interval set by emergency_restart_interval then FPM will restart. A value
|
||||||
|
; of '0' means 'Off'.
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_threshold = 0
|
||||||
|
|
||||||
|
; Interval of time used by emergency_restart_interval to determine when
|
||||||
|
; a graceful restart will be initiated. This can be useful to work around
|
||||||
|
; accidental corruptions in an accelerator's shared memory.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;emergency_restart_interval = 0
|
||||||
|
|
||||||
|
; Time limit for child processes to wait for a reaction on signals from master.
|
||||||
|
; Available units: s(econds), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default Value: 0
|
||||||
|
;process_control_timeout = 0
|
||||||
|
|
||||||
|
; The maximum number of processes FPM will fork. This has been designed to control
|
||||||
|
; the global number of processes when using dynamic PM within a lot of pools.
|
||||||
|
; Use it with caution.
|
||||||
|
; Note: A value of 0 indicates no limit
|
||||||
|
; Default Value: 0
|
||||||
|
; process.max = 128
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the master process (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lowest priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool process will inherit the master process priority
|
||||||
|
; unless specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Send FPM to background. Set to 'no' to keep FPM in foreground for debugging.
|
||||||
|
; Default Value: yes
|
||||||
|
;daemonize = yes
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit for the master process.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit for the master process.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Specify the event mechanism FPM will use. The following is available:
|
||||||
|
; - select (any POSIX os)
|
||||||
|
; - poll (any POSIX os)
|
||||||
|
; - epoll (linux >= 2.5.44)
|
||||||
|
; - kqueue (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
|
||||||
|
; - /dev/poll (Solaris >= 7)
|
||||||
|
; - port (Solaris >= 10)
|
||||||
|
; Default Value: not set (auto detection)
|
||||||
|
;events.mechanism = epoll
|
||||||
|
|
||||||
|
; When FPM is built with systemd integration, specify the interval,
|
||||||
|
; in seconds, between health report notification to systemd.
|
||||||
|
; Set to 0 to disable.
|
||||||
|
; Available Units: s(econds), m(inutes), h(ours)
|
||||||
|
; Default Unit: seconds
|
||||||
|
; Default value: 10
|
||||||
|
;systemd_interval = 10
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; Pool Definitions ;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
; Multiple pools of child processes may be started with different listening
|
||||||
|
; ports and different management options. The name of the pool will be
|
||||||
|
; used in logs and stats. There is no limitation on the number of pools which
|
||||||
|
; FPM can handle. Your system will tell you anyway :)
|
||||||
|
|
||||||
|
; Include one or more files. If glob(3) exists, it is used to include a bunch of
|
||||||
|
; files from a glob(3) pattern. This directive can be used everywhere in the
|
||||||
|
; file.
|
||||||
|
; Relative path can also be used. They will be prefixed by:
|
||||||
|
; - the global prefix if it's been set (-p argument)
|
||||||
|
; - /usr otherwise
|
||||||
|
include=/etc/php/7.2/fpm/pool.d/*.conf
|
||||||
1914
code/php-7.2/files/debian9/fpm/original-php7.2.2-php.ini
Normal file
1914
code/php-7.2/files/debian9/fpm/original-php7.2.2-php.ini
Normal file
File diff suppressed because it is too large
Load Diff
417
code/php-7.2/files/debian9/fpm/original-php7.2.2-www.conf
Normal file
417
code/php-7.2/files/debian9/fpm/original-php7.2.2-www.conf
Normal file
@@ -0,0 +1,417 @@
|
|||||||
|
; Start a new pool named 'www'.
|
||||||
|
; the variable $pool can be used in any directive and will be replaced by the
|
||||||
|
; pool name ('www' here)
|
||||||
|
[www]
|
||||||
|
|
||||||
|
; Per pool prefix
|
||||||
|
; It only applies on the following directives:
|
||||||
|
; - 'access.log'
|
||||||
|
; - 'slowlog'
|
||||||
|
; - 'listen' (unixsocket)
|
||||||
|
; - 'chroot'
|
||||||
|
; - 'chdir'
|
||||||
|
; - 'php_values'
|
||||||
|
; - 'php_admin_values'
|
||||||
|
; When not set, the global prefix (or /usr) applies instead.
|
||||||
|
; Note: This directive can also be relative to the global prefix.
|
||||||
|
; Default Value: none
|
||||||
|
;prefix = /path/to/pools/$pool
|
||||||
|
|
||||||
|
; Unix user/group of processes
|
||||||
|
; Note: The user is mandatory. If the group is not set, the default user's group
|
||||||
|
; will be used.
|
||||||
|
user = www-data
|
||||||
|
group = www-data
|
||||||
|
|
||||||
|
; The address on which to accept FastCGI requests.
|
||||||
|
; Valid syntaxes are:
|
||||||
|
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
|
||||||
|
; a specific port;
|
||||||
|
; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
||||||
|
; a specific port;
|
||||||
|
; 'port' - to listen on a TCP socket to all addresses
|
||||||
|
; (IPv6 and IPv4-mapped) on a specific port;
|
||||||
|
; '/path/to/unix/socket' - to listen on a unix socket.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
listen = /run/php/php7.2-fpm.sock
|
||||||
|
|
||||||
|
; Set listen(2) backlog.
|
||||||
|
; Default Value: 511 (-1 on FreeBSD and OpenBSD)
|
||||||
|
;listen.backlog = 511
|
||||||
|
|
||||||
|
; Set permissions for unix socket, if one is used. In Linux, read/write
|
||||||
|
; permissions must be set in order to allow connections from a web server. Many
|
||||||
|
; BSD-derived systems allow connections regardless of permissions.
|
||||||
|
; Default Values: user and group are set as the running user
|
||||||
|
; mode is set to 0660
|
||||||
|
listen.owner = www-data
|
||||||
|
listen.group = www-data
|
||||||
|
;listen.mode = 0660
|
||||||
|
; When POSIX Access Control Lists are supported you can set them using
|
||||||
|
; these options, value is a comma separated list of user/group names.
|
||||||
|
; When set, listen.owner and listen.group are ignored
|
||||||
|
;listen.acl_users =
|
||||||
|
;listen.acl_groups =
|
||||||
|
|
||||||
|
; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect.
|
||||||
|
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
|
||||||
|
; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
|
||||||
|
; must be separated by a comma. If this value is left blank, connections will be
|
||||||
|
; accepted from any ip address.
|
||||||
|
; Default Value: any
|
||||||
|
;listen.allowed_clients = 127.0.0.1
|
||||||
|
|
||||||
|
; Specify the nice(2) priority to apply to the pool processes (only if set)
|
||||||
|
; The value can vary from -19 (highest priority) to 20 (lower priority)
|
||||||
|
; Note: - It will only work if the FPM master process is launched as root
|
||||||
|
; - The pool processes will inherit the master process priority
|
||||||
|
; unless it specified otherwise
|
||||||
|
; Default Value: no set
|
||||||
|
; process.priority = -19
|
||||||
|
|
||||||
|
; Choose how the process manager will control the number of child processes.
|
||||||
|
; Possible Values:
|
||||||
|
; static - a fixed number (pm.max_children) of child processes;
|
||||||
|
; dynamic - the number of child processes are set dynamically based on the
|
||||||
|
; following directives. With this process management, there will be
|
||||||
|
; always at least 1 children.
|
||||||
|
; pm.max_children - the maximum number of children that can
|
||||||
|
; be alive at the same time.
|
||||||
|
; pm.start_servers - the number of children created on startup.
|
||||||
|
; pm.min_spare_servers - the minimum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is less than this
|
||||||
|
; number then some children will be created.
|
||||||
|
; pm.max_spare_servers - the maximum number of children in 'idle'
|
||||||
|
; state (waiting to process). If the number
|
||||||
|
; of 'idle' processes is greater than this
|
||||||
|
; number then some children will be killed.
|
||||||
|
; ondemand - no children are created at startup. Children will be forked when
|
||||||
|
; new requests will connect. The following parameter are used:
|
||||||
|
; pm.max_children - the maximum number of children that
|
||||||
|
; can be alive at the same time.
|
||||||
|
; pm.process_idle_timeout - The number of seconds after which
|
||||||
|
; an idle process will be killed.
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm = dynamic
|
||||||
|
|
||||||
|
; The number of child processes to be created when pm is set to 'static' and the
|
||||||
|
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
||||||
|
; This value sets the limit on the number of simultaneous requests that will be
|
||||||
|
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
|
||||||
|
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
|
||||||
|
; CGI. The below defaults are based on a server without much resources. Don't
|
||||||
|
; forget to tweak pm.* to fit your needs.
|
||||||
|
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
||||||
|
; Note: This value is mandatory.
|
||||||
|
pm.max_children = 5
|
||||||
|
|
||||||
|
; The number of child processes created on startup.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
|
||||||
|
pm.start_servers = 2
|
||||||
|
|
||||||
|
; The desired minimum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.min_spare_servers = 1
|
||||||
|
|
||||||
|
; The desired maximum number of idle server processes.
|
||||||
|
; Note: Used only when pm is set to 'dynamic'
|
||||||
|
; Note: Mandatory when pm is set to 'dynamic'
|
||||||
|
pm.max_spare_servers = 3
|
||||||
|
|
||||||
|
; The number of seconds after which an idle process will be killed.
|
||||||
|
; Note: Used only when pm is set to 'ondemand'
|
||||||
|
; Default Value: 10s
|
||||||
|
;pm.process_idle_timeout = 10s;
|
||||||
|
|
||||||
|
; The number of requests each child process should execute before respawning.
|
||||||
|
; This can be useful to work around memory leaks in 3rd party libraries. For
|
||||||
|
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
||||||
|
; Default Value: 0
|
||||||
|
;pm.max_requests = 500
|
||||||
|
|
||||||
|
; The URI to view the FPM status page. If this value is not set, no URI will be
|
||||||
|
; recognized as a status page. It shows the following informations:
|
||||||
|
; pool - the name of the pool;
|
||||||
|
; process manager - static, dynamic or ondemand;
|
||||||
|
; start time - the date and time FPM has started;
|
||||||
|
; start since - number of seconds since FPM has started;
|
||||||
|
; accepted conn - the number of request accepted by the pool;
|
||||||
|
; listen queue - the number of request in the queue of pending
|
||||||
|
; connections (see backlog in listen(2));
|
||||||
|
; max listen queue - the maximum number of requests in the queue
|
||||||
|
; of pending connections since FPM has started;
|
||||||
|
; listen queue len - the size of the socket queue of pending connections;
|
||||||
|
; idle processes - the number of idle processes;
|
||||||
|
; active processes - the number of active processes;
|
||||||
|
; total processes - the number of idle + active processes;
|
||||||
|
; max active processes - the maximum number of active processes since FPM
|
||||||
|
; has started;
|
||||||
|
; max children reached - number of times, the process limit has been reached,
|
||||||
|
; when pm tries to start more children (works only for
|
||||||
|
; pm 'dynamic' and 'ondemand');
|
||||||
|
; Value are updated in real time.
|
||||||
|
; Example output:
|
||||||
|
; pool: www
|
||||||
|
; process manager: static
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 62636
|
||||||
|
; accepted conn: 190460
|
||||||
|
; listen queue: 0
|
||||||
|
; max listen queue: 1
|
||||||
|
; listen queue len: 42
|
||||||
|
; idle processes: 4
|
||||||
|
; active processes: 11
|
||||||
|
; total processes: 15
|
||||||
|
; max active processes: 12
|
||||||
|
; max children reached: 0
|
||||||
|
;
|
||||||
|
; By default the status page output is formatted as text/plain. Passing either
|
||||||
|
; 'html', 'xml' or 'json' in the query string will return the corresponding
|
||||||
|
; output syntax. Example:
|
||||||
|
; http://www.foo.bar/status
|
||||||
|
; http://www.foo.bar/status?json
|
||||||
|
; http://www.foo.bar/status?html
|
||||||
|
; http://www.foo.bar/status?xml
|
||||||
|
;
|
||||||
|
; By default the status page only outputs short status. Passing 'full' in the
|
||||||
|
; query string will also return status for each pool process.
|
||||||
|
; Example:
|
||||||
|
; http://www.foo.bar/status?full
|
||||||
|
; http://www.foo.bar/status?json&full
|
||||||
|
; http://www.foo.bar/status?html&full
|
||||||
|
; http://www.foo.bar/status?xml&full
|
||||||
|
; The Full status returns for each process:
|
||||||
|
; pid - the PID of the process;
|
||||||
|
; state - the state of the process (Idle, Running, ...);
|
||||||
|
; start time - the date and time the process has started;
|
||||||
|
; start since - the number of seconds since the process has started;
|
||||||
|
; requests - the number of requests the process has served;
|
||||||
|
; request duration - the duration in µs of the requests;
|
||||||
|
; request method - the request method (GET, POST, ...);
|
||||||
|
; request URI - the request URI with the query string;
|
||||||
|
; content length - the content length of the request (only with POST);
|
||||||
|
; user - the user (PHP_AUTH_USER) (or '-' if not set);
|
||||||
|
; script - the main script called (or '-' if not set);
|
||||||
|
; last request cpu - the %cpu the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because CPU calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; last request memory - the max amount of memory the last request consumed
|
||||||
|
; it's always 0 if the process is not in Idle state
|
||||||
|
; because memory calculation is done when the request
|
||||||
|
; processing has terminated;
|
||||||
|
; If the process is in Idle state, then informations are related to the
|
||||||
|
; last request the process has served. Otherwise informations are related to
|
||||||
|
; the current request being served.
|
||||||
|
; Example output:
|
||||||
|
; ************************
|
||||||
|
; pid: 31330
|
||||||
|
; state: Running
|
||||||
|
; start time: 01/Jul/2011:17:53:49 +0200
|
||||||
|
; start since: 63087
|
||||||
|
; requests: 12808
|
||||||
|
; request duration: 1250261
|
||||||
|
; request method: GET
|
||||||
|
; request URI: /test_mem.php?N=10000
|
||||||
|
; content length: 0
|
||||||
|
; user: -
|
||||||
|
; script: /home/fat/web/docs/php/test_mem.php
|
||||||
|
; last request cpu: 0.00
|
||||||
|
; last request memory: 0
|
||||||
|
;
|
||||||
|
; Note: There is a real-time FPM status monitoring sample web page available
|
||||||
|
; It's available in: /usr/share/php/7.2/fpm/status.html
|
||||||
|
;
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;pm.status_path = /status
|
||||||
|
|
||||||
|
; The ping URI to call the monitoring page of FPM. If this value is not set, no
|
||||||
|
; URI will be recognized as a ping page. This could be used to test from outside
|
||||||
|
; that FPM is alive and responding, or to
|
||||||
|
; - create a graph of FPM availability (rrd or such);
|
||||||
|
; - remove a server from a group if it is not responding (load balancing);
|
||||||
|
; - trigger alerts for the operating team (24/7).
|
||||||
|
; Note: The value must start with a leading slash (/). The value can be
|
||||||
|
; anything, but it may not be a good idea to use the .php extension or it
|
||||||
|
; may conflict with a real PHP file.
|
||||||
|
; Default Value: not set
|
||||||
|
;ping.path = /ping
|
||||||
|
|
||||||
|
; This directive may be used to customize the response of a ping request. The
|
||||||
|
; response is formatted as text/plain with a 200 response code.
|
||||||
|
; Default Value: pong
|
||||||
|
;ping.response = pong
|
||||||
|
|
||||||
|
; The access log file
|
||||||
|
; Default: not set
|
||||||
|
;access.log = log/$pool.access.log
|
||||||
|
|
||||||
|
; The access log format.
|
||||||
|
; The following syntax is allowed
|
||||||
|
; %%: the '%' character
|
||||||
|
; %C: %CPU used by the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{user}C for user CPU only
|
||||||
|
; - %{system}C for system CPU only
|
||||||
|
; - %{total}C for user + system CPU (default)
|
||||||
|
; %d: time taken to serve the request
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{seconds}d (default)
|
||||||
|
; - %{miliseconds}d
|
||||||
|
; - %{mili}d
|
||||||
|
; - %{microseconds}d
|
||||||
|
; - %{micro}d
|
||||||
|
; %e: an environment variable (same as $_ENV or $_SERVER)
|
||||||
|
; it must be associated with embraces to specify the name of the env
|
||||||
|
; variable. Some exemples:
|
||||||
|
; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
|
||||||
|
; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
|
||||||
|
; %f: script filename
|
||||||
|
; %l: content-length of the request (for POST request only)
|
||||||
|
; %m: request method
|
||||||
|
; %M: peak of memory allocated by PHP
|
||||||
|
; it can accept the following format:
|
||||||
|
; - %{bytes}M (default)
|
||||||
|
; - %{kilobytes}M
|
||||||
|
; - %{kilo}M
|
||||||
|
; - %{megabytes}M
|
||||||
|
; - %{mega}M
|
||||||
|
; %n: pool name
|
||||||
|
; %o: output header
|
||||||
|
; it must be associated with embraces to specify the name of the header:
|
||||||
|
; - %{Content-Type}o
|
||||||
|
; - %{X-Powered-By}o
|
||||||
|
; - %{Transfert-Encoding}o
|
||||||
|
; - ....
|
||||||
|
; %p: PID of the child that serviced the request
|
||||||
|
; %P: PID of the parent of the child that serviced the request
|
||||||
|
; %q: the query string
|
||||||
|
; %Q: the '?' character if query string exists
|
||||||
|
; %r: the request URI (without the query string, see %q and %Q)
|
||||||
|
; %R: remote IP address
|
||||||
|
; %s: status (response code)
|
||||||
|
; %t: server time the request was received
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %T: time the log has been written (the request has finished)
|
||||||
|
; it can accept a strftime(3) format:
|
||||||
|
; %d/%b/%Y:%H:%M:%S %z (default)
|
||||||
|
; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag
|
||||||
|
; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t
|
||||||
|
; %u: remote user
|
||||||
|
;
|
||||||
|
; Default: "%R - %u %t \"%m %r\" %s"
|
||||||
|
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
|
||||||
|
|
||||||
|
; The log file for slow requests
|
||||||
|
; Default Value: not set
|
||||||
|
; Note: slowlog is mandatory if request_slowlog_timeout is set
|
||||||
|
;slowlog = log/$pool.log.slow
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which a PHP backtrace will be
|
||||||
|
; dumped to the 'slowlog' file. A value of '0s' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_slowlog_timeout = 0
|
||||||
|
|
||||||
|
; Depth of slow log stack trace.
|
||||||
|
; Default Value: 20
|
||||||
|
;request_slowlog_trace_depth = 20
|
||||||
|
|
||||||
|
; The timeout for serving a single request after which the worker process will
|
||||||
|
; be killed. This option should be used when the 'max_execution_time' ini option
|
||||||
|
; does not stop script execution for some reason. A value of '0' means 'off'.
|
||||||
|
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
|
||||||
|
; Default Value: 0
|
||||||
|
;request_terminate_timeout = 0
|
||||||
|
|
||||||
|
; Set open file descriptor rlimit.
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_files = 1024
|
||||||
|
|
||||||
|
; Set max core size rlimit.
|
||||||
|
; Possible Values: 'unlimited' or an integer greater or equal to 0
|
||||||
|
; Default Value: system defined value
|
||||||
|
;rlimit_core = 0
|
||||||
|
|
||||||
|
; Chroot to this directory at the start. This value must be defined as an
|
||||||
|
; absolute path. When this value is not set, chroot is not used.
|
||||||
|
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
|
||||||
|
; of its subdirectories. If the pool prefix is not set, the global prefix
|
||||||
|
; will be used instead.
|
||||||
|
; Note: chrooting is a great security feature and should be used whenever
|
||||||
|
; possible. However, all PHP paths will be relative to the chroot
|
||||||
|
; (error_log, sessions.save_path, ...).
|
||||||
|
; Default Value: not set
|
||||||
|
;chroot =
|
||||||
|
|
||||||
|
; Chdir to this directory at the start.
|
||||||
|
; Note: relative path can be used.
|
||||||
|
; Default Value: current directory or / when chroot
|
||||||
|
;chdir = /var/www
|
||||||
|
|
||||||
|
; Redirect worker stdout and stderr into main error log. If not set, stdout and
|
||||||
|
; stderr will be redirected to /dev/null according to FastCGI specs.
|
||||||
|
; Note: on highloaded environement, this can cause some delay in the page
|
||||||
|
; process time (several ms).
|
||||||
|
; Default Value: no
|
||||||
|
;catch_workers_output = yes
|
||||||
|
|
||||||
|
; Clear environment in FPM workers
|
||||||
|
; Prevents arbitrary environment variables from reaching FPM worker processes
|
||||||
|
; by clearing the environment in workers before env vars specified in this
|
||||||
|
; pool configuration are added.
|
||||||
|
; Setting to "no" will make all environment variables available to PHP code
|
||||||
|
; via getenv(), $_ENV and $_SERVER.
|
||||||
|
; Default Value: yes
|
||||||
|
;clear_env = no
|
||||||
|
|
||||||
|
; Limits the extensions of the main script FPM will allow to parse. This can
|
||||||
|
; prevent configuration mistakes on the web server side. You should only limit
|
||||||
|
; FPM to .php extensions to prevent malicious users to use other extensions to
|
||||||
|
; execute php code.
|
||||||
|
; Note: set an empty value to allow all extensions.
|
||||||
|
; Default Value: .php
|
||||||
|
;security.limit_extensions = .php .php3 .php4 .php5 .php7
|
||||||
|
|
||||||
|
; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from
|
||||||
|
; the current environment.
|
||||||
|
; Default Value: clean env
|
||||||
|
;env[HOSTNAME] = $HOSTNAME
|
||||||
|
;env[PATH] = /usr/local/bin:/usr/bin:/bin
|
||||||
|
;env[TMP] = /tmp
|
||||||
|
;env[TMPDIR] = /tmp
|
||||||
|
;env[TEMP] = /tmp
|
||||||
|
|
||||||
|
; Additional php.ini defines, specific to this pool of workers. These settings
|
||||||
|
; overwrite the values previously defined in the php.ini. The directives are the
|
||||||
|
; same as the PHP SAPI:
|
||||||
|
; php_value/php_flag - you can set classic ini defines which can
|
||||||
|
; be overwritten from PHP call 'ini_set'.
|
||||||
|
; php_admin_value/php_admin_flag - these directives won't be overwritten by
|
||||||
|
; PHP call 'ini_set'
|
||||||
|
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
|
||||||
|
|
||||||
|
; Defining 'extension' will load the corresponding shared extension from
|
||||||
|
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
|
||||||
|
; overwrite previously defined php.ini values, but will append the new value
|
||||||
|
; instead.
|
||||||
|
|
||||||
|
; Note: path INI options can be relative and will be expanded with the prefix
|
||||||
|
; (pool, global or /usr)
|
||||||
|
|
||||||
|
; Default Value: nothing is defined by default except the values in php.ini and
|
||||||
|
; specified at startup with the -d argument
|
||||||
|
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
|
||||||
|
;php_flag[display_errors] = off
|
||||||
|
;php_admin_value[error_log] = /var/log/fpm-php.www.log
|
||||||
|
;php_admin_flag[log_errors] = on
|
||||||
|
;php_admin_value[memory_limit] = 32M
|
||||||
3
code/php-7.2/handlers/main.yml
Normal file
3
code/php-7.2/handlers/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- name: restart php
|
||||||
|
service: name=php7.2-fpm state=restarted
|
||||||
46
code/php-7.2/tasks/install-debian.yml
Normal file
46
code/php-7.2/tasks/install-debian.yml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
# Debian 9 Stretch ONLY
|
||||||
|
|
||||||
|
# We use the sury.org PHP repositories which contains many versions of PHP
|
||||||
|
# All of these versions will be newere than comes stock with debian
|
||||||
|
|
||||||
|
# Add sury.org GPG keys
|
||||||
|
- name: Addding sury.org PHP sources GPG key
|
||||||
|
apt_key: url='https://packages.sury.org/php/apt.gpg' state=present
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 8 Jessie
|
||||||
|
- name: Adding sury.org PHP sources for Debian 8 Jessie
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ jessie main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "8"
|
||||||
|
|
||||||
|
# Add sury.org PHP repositories - Debian 9 Stretch
|
||||||
|
- name: Adding sury.org PHP sources for Debian 9 Stretch
|
||||||
|
apt_repository: repo='deb https://packages.sury.org/php/ stretch main' state=present
|
||||||
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
||||||
|
|
||||||
|
# Install PHP 7.2
|
||||||
|
- name: Installing PHP 7.2
|
||||||
|
apt:
|
||||||
|
update_cache: yes
|
||||||
|
state: present
|
||||||
|
name:
|
||||||
|
- php7.2-bcmath
|
||||||
|
- php7.2-bz2
|
||||||
|
- php7.2-cli
|
||||||
|
- php7.2-common
|
||||||
|
- php7.2-curl
|
||||||
|
- php7.2-fpm
|
||||||
|
- php7.2-gd
|
||||||
|
- php7.2-imap
|
||||||
|
- php7.2-intl
|
||||||
|
- php7.2-json
|
||||||
|
- php7.2-ldap
|
||||||
|
- php7.2-mbstring
|
||||||
|
#- php7.2-mcrypt # Gone in 7.2
|
||||||
|
- php7.2-mysql
|
||||||
|
- php7.2-opcache
|
||||||
|
- php7.2-readline
|
||||||
|
- php7.2-soap
|
||||||
|
- php7.2-sybase
|
||||||
|
- php7.2-xml
|
||||||
|
- php7.2-zip
|
||||||
6
code/php-7.2/tasks/main.yml
Normal file
6
code/php-7.2/tasks/main.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
# php-7.2
|
||||||
|
|
||||||
|
# Install PHP 7.2 - Debian All Versions
|
||||||
|
- include_tasks: install-debian.yml
|
||||||
|
when: ansible_os_family == "Debian"
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user