Saltstack Official Apache Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
11 лет назад
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # ``apache`` formula configuration:
  2. apache:
  3. server: apache2
  4. service: apache2
  5. vhostdir: /etc/apache2/sites-available
  6. confdir: /etc/apache2/conf.d
  7. confext: .conf
  8. logdir: /var/log/apache2
  9. wwwdir: /srv/apache2
  10. # ``apache.mod_wsgi`` formula additional configuration:
  11. mod_wsgi: mod_wsgi
  12. # ``apache.vhosts`` formula additional configuration:
  13. sites:
  14. example.net:
  15. template_file: salt://apache/vhosts/minimal.tmpl
  16. example.com: # must be unique; used as an ID declaration in Salt.
  17. template_file: salt://apache/vhosts/standard.tmpl
  18. ####################### DEFAULT VALUES BELOW ############################
  19. # NOTE: the values below are simply default settings that *can* be
  20. # overridden and are not required in order to use this formula to create
  21. # vhost entries.
  22. #
  23. # Do not copy the values below into your Pillar unless you intend to
  24. # modify these vaules.
  25. ####################### DEFAULT VALUES BELOW ############################
  26. template_engine: jinja
  27. interface: '*'
  28. port: '80'
  29. ServerName: example.com # uses the unique ID above unless specified
  30. ServerAlias: www.example.com
  31. ServerAdmin: webmaster@example.com
  32. LogLevel: warn
  33. ErrorLog: /path/to/logs/example.com-error.log # E.g.: /var/log/apache2/example.com-error.log
  34. CustomLog: /path/to/logs/example.com-access.log # E.g.: /var/log/apache2/example.com-access.log
  35. DocumentRoot: /path/to/www/dir/example.com # E.g., /var/www/example.com
  36. Directory:
  37. # "default" is a special case; Adds ``/path/to/www/dir/example.com``
  38. # E.g.: /var/www/example.com
  39. default:
  40. Options: -Indexes FollowSymLinks
  41. Order: allow,deny # For Apache < 2.4
  42. Allow: from all # For apache < 2.4
  43. Require: all granted # For apache > 2.4.
  44. AllowOverride: None
  45. Formula_Append: |
  46. Additional config as a
  47. multi-line string here
  48. Formula_Append: |
  49. Additional config as a
  50. multi-line string here
  51. # ``apache.debian_full`` formula additional configuration:
  52. register-site:
  53. # any name as an array index, and you can duplicate this section
  54. UNIQUE_VALUE_HERE:
  55. name: 'my name'
  56. path: 'salt://path/to/sites-available/conf/file'
  57. state: 'enabled'