main.yml 1.27 KB
---
# tasks file for openresty


# make sure user type YES
- name: "make sure user type YES to confirm"
  fail: 
    msg: "user do not type YES"
  when: confirmation != 'YES'

# make sure path exist
- stat:
    path:  "{{ path }}"
  register: stat_result
- name: "make sure openresty path exist" 
  fail:
    msg: " openresty {{ path }} not exist!"
  when:  stat_result.stat.exists == False



#  make sure group exists
- name: make sure groups exist in inventory file
  fail:
    msg: "group {{ item }} not exist!"
  when: item not in groups
  with_items:
    - nameservers
    - java-nginx
    - java-gateway
    - java-brower
    - java-wechat
    - java-activity
    - java-erpgateway
    - java-union

- name: copy lualib files to openresty
  copy:
    src: java-nginx-config/lualib/resty/
    dest: "{{ path }}/lualib/resty/"
  notify:
    - reload nginx



- name: copy yoho conf files to openresty
  copy:
    src: java-nginx-config/nginx/conf/
    dest: "{{ path }}/nginx/conf/"
  notify:
    - reload nginx


- name: update nginx upstream for file -nginx.conf
  template:
    src: nginx.conf.j2
    dest: "{{ path }}/nginx/conf/nginx.conf"
  notify:
    - reload nginx

- name: sync file permissions
  file: 
    path: "/Data/local/openresty-1.9.15.1/nginx"
    owner: "www"
    group: "www"