1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Ansible_Project/playbook-server.yml
2022-05-02 17:37:21 +02:00

18 lines
306 B
YAML

- name: "Server Install"
hosts: "all"
become: true
vars:
proxy: "http://proxy.univ-lyon1.fr:3128/"
environment:
http_proxy: "{{ proxy }}"
https_proxy: "{{ proxy }}"
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE: DontWarn
roles:
- apt
- mariadb
- php
- nodejs
- nginx