Taula de continguts

Web y messaging

3:44 Infraestructura Web / messaging

web:

messaging:

apache2_module

https://docs.ansible.com/ansible/latest/modules/apache2_module_module.html#apache2-module-module

-name: Habilitar móudlo wsgi
  apache2_module:
    name: wsgi
    state: present

htpasswd

https://docs.ansible.com/ansible/latest/modules/htpasswd_module.html#htpasswd-module

- name: instalar libreria necesaria passlib
  apt: name=python-passlib state=present
- name: añadir usuario
  htpasswd:
    name: oforte
    path: /var/www/html/.htpasswd
    password: test123
  delegate_to: localhost
AuthUserFile /var/www/html/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter password"
AuthType Basic
Require valid-user

supervisorctl

https://docs.ansible.com/ansible/latest/modules/supervisorctl_module.html#supervisorctl-module

-name: detener aplicación
  supervisorctl:
    name: long_script
    state: stopped