summaryrefslogtreecommitdiffstats
path: root/scripts/nginx/main.yml
blob: 59c8d1fd66b16f965c18a05fa3d4ae264d6cf0ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright (C) 2017 Xin Liang
#
# License: GNU General Public License (GPL)
version: 2.2
category: Server
shortdesc: Nginx Webserver
longdesc: |
  Configure a resource group containing a virtual IP address and
  an instance of the Nginx web server.

  You can optionally configure a file system resource which will be
  mounted before the web server is started.

  You can also optionally configure a database resource which will
  be started before the web server but after mounting the optional
  file system.
include:
  - agent: ocf:heartbeat:nginx
    name: nginx
    longdesc: |
      The Nginx configuration file specified here must be available via the
      same path on all cluster nodes; And nginx.service should be disabled on
      all cluster nodes; And "server_name" option in nginx configure file 
      should be related with virtual IP.
    ops: |
      op start timeout="40"
      op stop timeout="60"
      op monitor interval="10" timeout="30"
  - script: virtual-ip
    shortdesc: The IP address configured here will start before the Nginx instance.
    parameters:
      - name: id
        value: "{{id}}-vip"
  - script: filesystem
    shortdesc: Optional file system mounted before the web server is started.
    required: false
  - script: database
    shortdesc: Optional database started before the web server is started.
    required: false
parameters:
  - name: install
    type: boolean
    shortdesc: Install and configure nginx
    value: false
actions:
  - install:
      - nginx
    shortdesc: Install the nginx package
    when: install
  - service:
      - apache: disable
    shortdesc: Let cluster manage nginx
    when: install
  - include: filesystem
  - include: database
  - include: virtual-ip
  - include: nginx
  - cib: |
      group g-{{id}}
        {{filesystem:id}}
        {{database:id}}
        {{virtual-ip:id}}
        {{id}}