Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.3 KiB

  1. ---
  2. is_proxy: false
  3. php: false
  4. config_name: null
  5. # max body size in Mb
  6. max_body_size: 8
  7. server_fqdn: "{{ ansible_hostname }}.lilik.it"
  8. proxy_location_path: ''
  9. # Same example usages:
  10. #
  11. # Redirect trakt folder to a proxy on fqdn_domain,
  12. # create a location file in /etc/nginx/locations/media.lilik.it/trakt.conf
  13. # dependencies:
  14. # - role: nginx
  15. # is_proxy: true
  16. # proxy_location_path: "trakt"
  17. # remote_host: "http://localhost:5000"
  18. # server_fqdn: "media.lilik.it"
  19. # parent_role_path: "trakt"
  20. #
  21. # Serve a location based on role template 'kodi-repository.conf.nginx.j2' on fqdn_domain,
  22. # create a location file in /etc/nginx/locations/media.lilik.it/kodi-repository.conf
  23. # dependencies:
  24. # - role: nginx
  25. # config_name: "kodi-repository"
  26. # server_fqdn: "{{ fqdn_domain }}"
  27. # parent_role_path: "kodi-repository"
  28. #
  29. # Serve a location based on role template 'roundcube.conf.nginx.j2' on fqdn_domain,
  30. # create a location file in /etc/nginx/locations/media.lilik.it/roundcube.conf,
  31. # serve php file using php pfm
  32. # dependencies:
  33. # - role: nginx
  34. # php: true
  35. # config_name: "roundcube"
  36. # server_fqdn: "webmail.lilik.it"
  37. # parent_role_path: "roundcube"