Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
README.md 3 KiB
Newer Older
  • Learn to ignore specific revisions
  • [🇫🇷 French version](README-FR.md)
    
    sylvainar's avatar
    sylvainar committed
    
    
    Deploy [Yunohost](https://yunohost.org/#/) with Ansible!
    
    sylvainar's avatar
    sylvainar committed
    
    
    sylvainar's avatar
    sylvainar committed
    
    None.
    
    
    Default variables are available in `default/main.yml` however it is necessary to override them according to your needs for Yunohost domains, users and apps.
    
    sylvainar's avatar
    sylvainar committed
    
    ```yml
    
    # Debian 10 script only.
    ynh_install_script_url: https://install.yunohost.org
    
    ynh_admin_password: MYINSECUREPWD_PLZ_OVERRIDE_THIS
    
    `ynh_install_script_url` downloads official Yunohost script for installing Yunohost packages. Yunohost is only available on Debian 10.
    `ynh_admin_password` is the password used to access to the server's administration interface. 
    
    ```yml
    # The list of Yunohost domains.
    
    ynh_main_domain: domain.tld
    ynh_extra_domains: 
      - forum.domain.tld
      - wiki.domain.tld
    ynh_ignore_dyndns_server: False
    
    `ynh_main_domain` is the main domain used by the server's users to access the authentication portal. If you already own a domain name, you probably want to use it here. You can also use a domain in .nohost.me / .noho.st / .ynh.fr (more info [here](https://yunohost.org/en/install/hardware:vps_debian)).
    `ynh_extra_domains` are optional and allow you to install one app per subdomain (more info [here](https://yunohost.org/en/administrate/specific_use_cases/domains/dns_subdomains)).
    `ynh_ignore_dyndns_server` allow to register domains with a Dynamic DNS service (more info [here](https://yunohost.org/en/dns_dynamicip)).
    
    ```yml
    
    # The list of Yunohost users.
    ynh_users: 
       - name: user1
         pass: MYINSECUREPWD_PLZ_OVERRIDE_THIS
         firstname: Jane
         lastname: Doe 
         mail_domain: domain.tld 
    
    ```
    Yunohost users are created from `ynh_users` variable. Each field is mandatory. Some Yunohost applications require that a user be the app administrator. He will then have the right to manage the application from the server administration interface. You can learn more about Yunohost user management [here](https://yunohost.org/en/users).
    
    # The list of Yunohost apps.
    ynh_apps: 
    
          domain: wiki.domain.tld
          path: /
          admin: user1 
          is_public: no
      - label: Discourse
        link: discourse 
        args:
          domain: forum.domain.tld
          path: /
          admin: user1 
          is_public: yes
    
    sylvainar's avatar
    sylvainar committed
    ```
    
    
    Applications are installed from the `ynh_apps` variable. The `label` variable is used to give a custom name to the application on the user interface. `link` is the name of the Yunohost application we want to install. Regarding the arguments, `path` and `domain` are essential. For the other arguments, you have to refer to the `manifest.json` available in the repository of the Yunohost application you are installing. 
    
    
    sylvainar's avatar
    sylvainar committed
    
    None.
    
    
    sylvainar's avatar
    sylvainar committed
    ```yml
    
    ---
    - name: Install Yunohost on Debian Server
    
    sylvainar's avatar
    sylvainar committed
      hosts: all
    
    sylvainar's avatar
    sylvainar committed
      pre_tasks:
        - name: Update all packages and index
    
          ansible.builtin.apt:
    
    sylvainar's avatar
    sylvainar committed
            upgrade: dist
            update_cache: yes
    
    sylvainar's avatar
    sylvainar committed
      roles:
    
    sylvainar's avatar
    sylvainar committed
    ```
    
    
    sylvainar's avatar
    sylvainar committed
    
    GPL-3.0