summaryrefslogtreecommitdiff
path: root/chaos-at-home/ch-testvm-prometheus.yml
blob: c142100c7dbbf0c2404b1d4c040e9959c710ce1f (plain) (blame)
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
---
- name: Basic Setup
  hosts: ch-testvm-prometheus
  roles:
  - role: apt-repo/base
  - role: core/base
  - role: core/sshd/base
  - role: core/zsh
  - role: core/ntp

- name: Payload Setup
  hosts: ch-testvm-prometheus
  roles:
  - role: apt-repo/spreadspace
  - role: nginx/base
  - role: nginx/auth/whawty-sso/base
  - role: nginx/auth/whawty-sso/auth
  post_tasks:
  #### test.chaos-at-home.org (default-server)
  - name: create directory for default server
    file:
      path: /var/www/default
      state: directory

  - name: copy chaos-at-home logo file
    copy:
      src: "{{ global_files_dir }}/chaos-at-home/logo.jpg"
      dest: /var/www/default/logo.jpg

  - name: install index.html for default server
    copy:
      dest: /var/www/default/index.html
      content: |
        <html>
          <head>
            <title>No Such Site</title>
          </head>
          <body style="font-family: Helvetica, Arial, Sans-Serif; color: white; background: black;">
            <div style="text-align: center; margin-top: 4em; margin-left:auto; margin-right:auto;">
              <img src="logo.jpg" alt="chaos@home Logo" />
              <h2 style="">You have reached the chaos@home test webserver.</h2>
            </div>
          </body>
        </html>

  - name: configure default vhost web.chaos-at-home.org
    vars:
      nginx_vhost:
        default: yes
        name: test
        template: generic
        hostnames:
        - test.chaos-at-home.org
        extra_directives: |
          include snippets/whawty-sso-chaos-at-home.conf;
        locations:
          '/':
            root: /var/www/default
            index: index.html
    include_role:
      name: nginx/vhost