This repository was archived by the owner on Feb 13, 2023. It is now read-only.
File tree 5 files changed +16
-7
lines changed
5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 39
39
- name : geerlingguy.mysql
40
40
version : 3.3.1
41
41
- name : geerlingguy.nginx
42
- version : 3.0 .0
42
+ version : 3.1 .0
43
43
- name : geerlingguy.nodejs
44
44
version : 5.1.1
45
45
- name : geerlingguy.php
Original file line number Diff line number Diff line change 42
42
matrix :
43
43
distro :
44
44
- centos8
45
+ - rockylinux8
45
46
- ubuntu2004
46
47
- ubuntu1804
47
48
- debian10
Original file line number Diff line number Diff line change @@ -82,11 +82,10 @@ nginx_upstreams: []
82
82
# - name: myapp1
83
83
# strategy: "ip_hash" # "least_conn", etc.
84
84
# keepalive: 16 # optional
85
- # servers: {
86
- # "srv1.example.com",
87
- # "srv2.example.com weight=3",
88
- # "srv3.example.com"
89
- # }
85
+ # servers:
86
+ # - "srv1.example.com"
87
+ # - "srv2.example.com weight=3"
88
+ # - "srv3.example.com"
90
89
91
90
nginx_log_format : |-
92
91
'$remote_addr - $remote_user [$time_local] "$request" '
Original file line number Diff line number Diff line change 10
10
11
11
# Setup/install tasks.
12
12
- include_tasks : setup-RedHat.yml
13
- when : ansible_os_family == 'RedHat'
13
+ when : ansible_os_family == 'RedHat' or ansible_os_family == 'Rocky'
14
14
15
15
- include_tasks : setup-Ubuntu.yml
16
16
when : ansible_distribution == 'Ubuntu'
Original file line number Diff line number Diff line change
1
+ ---
2
+ root_group : root
3
+ nginx_conf_path : /etc/nginx/conf.d
4
+ nginx_conf_file_path : /etc/nginx/nginx.conf
5
+ nginx_mime_file_path : /etc/nginx/mime.types
6
+ nginx_pidfile : /var/run/nginx.pid
7
+ nginx_vhost_path : /etc/nginx/conf.d
8
+ nginx_default_vhost_path : /etc/nginx/conf.d/default.conf
9
+ __nginx_user : " nginx"
You can’t perform that action at this time.
0 commit comments