Saltstack Official Apache Formula
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

apache-2.4.config.jinja 20KB

pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 8 gadiem
pirms 7 gadiem
pirms 8 gadiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. #
  2. # This file is managed by Salt! Do not edit by hand!
  3. #
  4. #
  5. # This is the main Apache HTTP server configuration file. It contains the
  6. # configuration directives that give the server its instructions.
  7. # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
  8. # In particular, see
  9. # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
  10. # for a discussion of each configuration directive.
  11. #
  12. # Do NOT simply read the instructions in here without understanding
  13. # what they do. They're here only as hints or reminders. If you are unsure
  14. # consult the online docs. You have been warned.
  15. #
  16. # Configuration and logfile names: If the filenames you specify for many
  17. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  18. # server will use that explicit path. If the filenames do *not* begin
  19. # with "/", the value of ServerRoot is prepended -- so "logs/access_log"
  20. # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
  21. # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
  22. # will be interpreted as '/logs/access_log'.
  23. #
  24. # ServerRoot: The top of the directory tree under which the server's
  25. # configuration, error, and log files are kept.
  26. #
  27. # Do not add a slash at the end of the directory path. If you point
  28. # ServerRoot at a non-local disk, be sure to specify a local disk on the
  29. # Mutex directive, if file-based mutexes are used. If you wish to share the
  30. # same ServerRoot for multiple httpd daemons, you will need to change at
  31. # least PidFile.
  32. #
  33. ServerRoot "/usr/local"
  34. #
  35. # Mutex: Allows you to set the mutex mechanism and mutex file directory
  36. # for individual mutexes, or change the global defaults
  37. #
  38. # Uncomment and change the directory if mutexes are file-based and the default
  39. # mutex file directory is not on a local disk or is not appropriate for some
  40. # other reason.
  41. #
  42. # Mutex default:/var/run
  43. #
  44. # Dynamic Shared Object (DSO) Support
  45. #
  46. # To be able to use the functionality of a module which was built as a DSO you
  47. # have to place corresponding `LoadModule' lines at this location so the
  48. # directives contained in it are actually available _before_ they are used.
  49. # Statically compiled modules (those listed by `httpd -l') do not need
  50. # to be loaded here.
  51. #
  52. # Example:
  53. # LoadModule foo_module modules/mod_foo.so
  54. #
  55. LoadModule authn_file_module libexec/apache24/mod_authn_file.so
  56. #LoadModule authn_dbm_module libexec/apache24/mod_authn_dbm.so
  57. #LoadModule authn_anon_module libexec/apache24/mod_authn_anon.so
  58. #LoadModule authn_dbd_module libexec/apache24/mod_authn_dbd.so
  59. #LoadModule authn_socache_module libexec/apache24/mod_authn_socache.so
  60. LoadModule authn_core_module libexec/apache24/mod_authn_core.so
  61. LoadModule authz_host_module libexec/apache24/mod_authz_host.so
  62. LoadModule authz_groupfile_module libexec/apache24/mod_authz_groupfile.so
  63. LoadModule authz_user_module libexec/apache24/mod_authz_user.so
  64. #LoadModule authz_dbm_module libexec/apache24/mod_authz_dbm.so
  65. #LoadModule authz_owner_module libexec/apache24/mod_authz_owner.so
  66. #LoadModule authz_dbd_module libexec/apache24/mod_authz_dbd.so
  67. LoadModule authz_core_module libexec/apache24/mod_authz_core.so
  68. #LoadModule authnz_fcgi_module libexec/apache24/mod_authnz_fcgi.so
  69. LoadModule access_compat_module libexec/apache24/mod_access_compat.so
  70. LoadModule auth_basic_module libexec/apache24/mod_auth_basic.so
  71. #LoadModule auth_form_module libexec/apache24/mod_auth_form.so
  72. #LoadModule auth_digest_module libexec/apache24/mod_auth_digest.so
  73. #LoadModule allowmethods_module libexec/apache24/mod_allowmethods.so
  74. #LoadModule file_cache_module libexec/apache24/mod_file_cache.so
  75. #LoadModule cache_module libexec/apache24/mod_cache.so
  76. #LoadModule cache_disk_module libexec/apache24/mod_cache_disk.so
  77. #LoadModule cache_socache_module libexec/apache24/mod_cache_socache.so
  78. #LoadModule socache_shmcb_module libexec/apache24/mod_socache_shmcb.so
  79. #LoadModule socache_dbm_module libexec/apache24/mod_socache_dbm.so
  80. #LoadModule socache_memcache_module libexec/apache24/mod_socache_memcache.so
  81. #LoadModule watchdog_module libexec/apache24/mod_watchdog.so
  82. #LoadModule macro_module libexec/apache24/mod_macro.so
  83. #LoadModule dbd_module libexec/apache24/mod_dbd.so
  84. #LoadModule dumpio_module libexec/apache24/mod_dumpio.so
  85. #LoadModule buffer_module libexec/apache24/mod_buffer.so
  86. #LoadModule data_module libexec/apache24/mod_data.so
  87. #LoadModule ratelimit_module libexec/apache24/mod_ratelimit.so
  88. LoadModule reqtimeout_module libexec/apache24/mod_reqtimeout.so
  89. #LoadModule ext_filter_module libexec/apache24/mod_ext_filter.so
  90. #LoadModule request_module libexec/apache24/mod_request.so
  91. #LoadModule include_module libexec/apache24/mod_include.so
  92. LoadModule filter_module libexec/apache24/mod_filter.so
  93. #LoadModule reflector_module libexec/apache24/mod_reflector.so
  94. #LoadModule substitute_module libexec/apache24/mod_substitute.so
  95. #LoadModule sed_module libexec/apache24/mod_sed.so
  96. #LoadModule charset_lite_module libexec/apache24/mod_charset_lite.so
  97. #LoadModule deflate_module libexec/apache24/mod_deflate.so
  98. #LoadModule xml2enc_module libexec/apache24/mod_xml2enc.so
  99. #LoadModule proxy_html_module libexec/apache24/mod_proxy_html.so
  100. LoadModule mime_module libexec/apache24/mod_mime.so
  101. LoadModule log_config_module libexec/apache24/mod_log_config.so
  102. #LoadModule log_debug_module libexec/apache24/mod_log_debug.so
  103. #LoadModule log_forensic_module libexec/apache24/mod_log_forensic.so
  104. #LoadModule logio_module libexec/apache24/mod_logio.so
  105. LoadModule env_module libexec/apache24/mod_env.so
  106. #LoadModule mime_magic_module libexec/apache24/mod_mime_magic.so
  107. #LoadModule cern_meta_module libexec/apache24/mod_cern_meta.so
  108. #LoadModule expires_module libexec/apache24/mod_expires.so
  109. LoadModule headers_module libexec/apache24/mod_headers.so
  110. #LoadModule usertrack_module libexec/apache24/mod_usertrack.so
  111. #LoadModule unique_id_module libexec/apache24/mod_unique_id.so
  112. LoadModule setenvif_module libexec/apache24/mod_setenvif.so
  113. LoadModule version_module libexec/apache24/mod_version.so
  114. #LoadModule remoteip_module libexec/apache24/mod_remoteip.so
  115. #LoadModule proxy_module libexec/apache24/mod_proxy.so
  116. #LoadModule proxy_connect_module libexec/apache24/mod_proxy_connect.so
  117. #LoadModule proxy_ftp_module libexec/apache24/mod_proxy_ftp.so
  118. #LoadModule proxy_http_module libexec/apache24/mod_proxy_http.so
  119. #LoadModule proxy_fcgi_module libexec/apache24/mod_proxy_fcgi.so
  120. #LoadModule proxy_scgi_module libexec/apache24/mod_proxy_scgi.so
  121. #LoadModule proxy_fdpass_module libexec/apache24/mod_proxy_fdpass.so
  122. #LoadModule proxy_wstunnel_module libexec/apache24/mod_proxy_wstunnel.so
  123. #LoadModule proxy_ajp_module libexec/apache24/mod_proxy_ajp.so
  124. #LoadModule proxy_balancer_module libexec/apache24/mod_proxy_balancer.so
  125. #LoadModule proxy_express_module libexec/apache24/mod_proxy_express.so
  126. #LoadModule proxy_hcheck_module libexec/apache24/mod_proxy_hcheck.so
  127. #LoadModule session_module libexec/apache24/mod_session.so
  128. #LoadModule session_cookie_module libexec/apache24/mod_session_cookie.so
  129. #LoadModule session_crypto_module libexec/apache24/mod_session_crypto.so
  130. #LoadModule session_dbd_module libexec/apache24/mod_session_dbd.so
  131. #LoadModule slotmem_shm_module libexec/apache24/mod_slotmem_shm.so
  132. #LoadModule slotmem_plain_module libexec/apache24/mod_slotmem_plain.so
  133. #LoadModule ssl_module libexec/apache24/mod_ssl.so
  134. #LoadModule dialup_module libexec/apache24/mod_dialup.so
  135. #LoadModule lbmethod_byrequests_module libexec/apache24/mod_lbmethod_byrequests.so
  136. #LoadModule lbmethod_bytraffic_module libexec/apache24/mod_lbmethod_bytraffic.so
  137. #LoadModule lbmethod_bybusyness_module libexec/apache24/mod_lbmethod_bybusyness.so
  138. #LoadModule lbmethod_heartbeat_module libexec/apache24/mod_lbmethod_heartbeat.so
  139. #LoadModule mpm_event_module libexec/apache24/mod_mpm_event.so
  140. LoadModule mpm_prefork_module libexec/apache24/mod_mpm_prefork.so
  141. #LoadModule mpm_worker_module libexec/apache24/mod_mpm_worker.so
  142. LoadModule unixd_module libexec/apache24/mod_unixd.so
  143. #LoadModule heartbeat_module libexec/apache24/mod_heartbeat.so
  144. #LoadModule heartmonitor_module libexec/apache24/mod_heartmonitor.so
  145. #LoadModule dav_module libexec/apache24/mod_dav.so
  146. LoadModule status_module libexec/apache24/mod_status.so
  147. LoadModule autoindex_module libexec/apache24/mod_autoindex.so
  148. #LoadModule asis_module libexec/apache24/mod_asis.so
  149. #LoadModule info_module libexec/apache24/mod_info.so
  150. #LoadModule suexec_module libexec/apache24/mod_suexec.so
  151. <IfModule !mpm_prefork_module>
  152. #LoadModule cgid_module libexec/apache24/mod_cgid.so
  153. </IfModule>
  154. <IfModule mpm_prefork_module>
  155. #LoadModule cgi_module libexec/apache24/mod_cgi.so
  156. </IfModule>
  157. #LoadModule dav_fs_module libexec/apache24/mod_dav_fs.so
  158. #LoadModule dav_lock_module libexec/apache24/mod_dav_lock.so
  159. #LoadModule vhost_alias_module libexec/apache24/mod_vhost_alias.so
  160. #LoadModule negotiation_module libexec/apache24/mod_negotiation.so
  161. LoadModule dir_module libexec/apache24/mod_dir.so
  162. #LoadModule imagemap_module libexec/apache24/mod_imagemap.so
  163. #LoadModule actions_module libexec/apache24/mod_actions.so
  164. #LoadModule speling_module libexec/apache24/mod_speling.so
  165. #LoadModule userdir_module libexec/apache24/mod_userdir.so
  166. LoadModule alias_module libexec/apache24/mod_alias.so
  167. #LoadModule rewrite_module libexec/apache24/mod_rewrite.so
  168. # Third party modules
  169. IncludeOptional etc/apache24/modules.d/[0-9][0-9][0-9]_*.conf
  170. Include {{ apache.portsfile }}
  171. <IfModule unixd_module>
  172. #
  173. # If you wish httpd to run as a different user or group, you must run
  174. # httpd as root initially and it will switch.
  175. #
  176. # User/Group: The name (or #number) of the user/group to run httpd as.
  177. # It is usually good practice to create a dedicated user and group for
  178. # running httpd, as with most system services.
  179. #
  180. User www
  181. Group www
  182. </IfModule>
  183. # 'Main' server configuration
  184. #
  185. # The directives in this section set up the values used by the 'main'
  186. # server, which responds to any requests that aren't handled by a
  187. # <VirtualHost> definition. These values also provide defaults for
  188. # any <VirtualHost> containers you may define later in the file.
  189. #
  190. # All of these directives may appear inside <VirtualHost> containers,
  191. # in which case these default settings will be overridden for the
  192. # virtual host being defined.
  193. #
  194. #
  195. # ServerAdmin: Your address, where problems with the server should be
  196. # e-mailed. This address appears on some server-generated pages, such
  197. # as error documents. e.g. admin@your-domain.com
  198. #
  199. ServerAdmin root@localhost
  200. #
  201. # ServerName gives the name and port that the server uses to identify itself.
  202. # This can often be determined automatically, but we recommend you specify
  203. # it explicitly to prevent problems during startup.
  204. #
  205. # If your host doesn't have a registered DNS name, enter its IP address here.
  206. #
  207. #ServerName www.example.com:80
  208. #
  209. # Deny access to the entirety of your server's filesystem. You must
  210. # explicitly permit access to web content directories in other
  211. # <Directory> blocks below.
  212. #
  213. <Directory />
  214. AllowOverride none
  215. Require all denied
  216. </Directory>
  217. #
  218. # Note that from this point forward you must specifically allow
  219. # particular features to be enabled - so if something's not working as
  220. # you might expect, make sure that you have specifically enabled it
  221. # below.
  222. #
  223. {%- for directive, dvalue in salt['pillar.get']('apache:global', {}).items() %}
  224. {{ directive }} {{ dvalue }}
  225. {%- endfor %}
  226. {% if apache.global_document_root is defined and apache.global_document_root|length > 0 %}
  227. #
  228. # DocumentRoot: The directory out of which you will serve your
  229. # documents. By default, all requests are taken from this directory, but
  230. # symbolic links and aliases may be used to point to other locations.
  231. #
  232. DocumentRoot "{{ apache.global_document_root }}"
  233. <Directory "{{ apache.global_document_root }}">
  234. #
  235. # Possible values for the Options directive are "None", "All",
  236. # or any combination of:
  237. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  238. #
  239. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  240. # doesn't give it to you.
  241. #
  242. # The Options directive is both complicated and important. Please see
  243. # http://httpd.apache.org/docs/2.4/mod/core.html#options
  244. # for more information.
  245. #
  246. Options Indexes FollowSymLinks
  247. #
  248. # AllowOverride controls what directives may be placed in .htaccess files.
  249. # It can be "All", "None", or any combination of the keywords:
  250. # AllowOverride FileInfo AuthConfig Limit
  251. #
  252. AllowOverride None
  253. #
  254. # Controls who can get stuff from this server.
  255. #
  256. Require all granted
  257. </Directory>
  258. {% endif %}
  259. #
  260. # DirectoryIndex: sets the file that Apache will serve if a directory
  261. # is requested.
  262. #
  263. <IfModule dir_module>
  264. DirectoryIndex index.html
  265. </IfModule>
  266. #
  267. # The following lines prevent .htaccess and .htpasswd files from being
  268. # viewed by Web clients.
  269. #
  270. <Files ".ht*">
  271. Require all denied
  272. </Files>
  273. #
  274. # ErrorLog: The location of the error log file.
  275. # If you do not specify an ErrorLog directive within a <VirtualHost>
  276. # container, error messages relating to that virtual host will be
  277. # logged here. If you *do* define an error logfile for a <VirtualHost>
  278. # container, that host's errors will be logged there and not here.
  279. #
  280. ErrorLog "/var/log/httpd-error.log"
  281. #
  282. # LogLevel: Control the number of messages logged to the error_log.
  283. # Possible values include: debug, info, notice, warn, error, crit,
  284. # alert, emerg.
  285. #
  286. LogLevel warn
  287. <IfModule log_config_module>
  288. #
  289. # The following directives define some format nicknames for use with
  290. # a CustomLog directive (see below).
  291. #
  292. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  293. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  294. <IfModule logio_module>
  295. # You need to enable mod_logio.c to use %I and %O
  296. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  297. </IfModule>
  298. #
  299. # The location and format of the access logfile (Common Logfile Format).
  300. # If you do not define any access logfiles within a <VirtualHost>
  301. # container, they will be logged here. Contrariwise, if you *do*
  302. # define per-<VirtualHost> access logfiles, transactions will be
  303. # logged therein and *not* in this file.
  304. #
  305. CustomLog "/var/log/httpd-access.log" common
  306. #
  307. # If you prefer a logfile with access, agent, and referer information
  308. # (Combined Logfile Format) you can use the following directive.
  309. #
  310. #CustomLog "/var/log/httpd-access.log" combined
  311. </IfModule>
  312. <IfModule alias_module>
  313. #
  314. # Redirect: Allows you to tell clients about documents that used to
  315. # exist in your server's namespace, but do not anymore. The client
  316. # will make a new request for the document at its new location.
  317. # Example:
  318. # Redirect permanent /foo http://www.example.com/bar
  319. #
  320. # Alias: Maps web paths into filesystem paths and is used to
  321. # access content that does not live under the DocumentRoot.
  322. # Example:
  323. # Alias /webpath /full/filesystem/path
  324. #
  325. # If you include a trailing / on /webpath then the server will
  326. # require it to be present in the URL. You will also likely
  327. # need to provide a <Directory> section to allow access to
  328. # the filesystem path.
  329. #
  330. # ScriptAlias: This controls which directories contain server scripts.
  331. # ScriptAliases are essentially the same as Aliases, except that
  332. # documents in the target directory are treated as applications and
  333. # run by the server when requested rather than as documents sent to the
  334. # client. The same rules about trailing "/" apply to ScriptAlias
  335. # directives as to Alias.
  336. #
  337. #ScriptAlias /cgi-bin/ "/usr/local/www/apache24/cgi-bin/"
  338. </IfModule>
  339. <IfModule cgid_module>
  340. #
  341. # ScriptSock: On threaded servers, designate the path to the UNIX
  342. # socket used to communicate with the CGI daemon of mod_cgid.
  343. #
  344. #Scriptsock cgisock
  345. </IfModule>
  346. #
  347. # "/usr/local/www/apache24/cgi-bin" should be changed to whatever your ScriptAliased
  348. # CGI directory exists, if you have that configured.
  349. #
  350. <Directory "/usr/local/www/apache24/cgi-bin">
  351. AllowOverride None
  352. Options None
  353. Require all granted
  354. </Directory>
  355. <IfModule mime_module>
  356. #
  357. # TypesConfig points to the file containing the list of mappings from
  358. # filename extension to MIME-type.
  359. #
  360. TypesConfig etc/apache24/mime.types
  361. #
  362. # AddType allows you to add to or override the MIME configuration
  363. # file specified in TypesConfig for specific file types.
  364. #
  365. #AddType application/x-gzip .tgz
  366. #
  367. # AddEncoding allows you to have certain browsers uncompress
  368. # information on the fly. Note: Not all browsers support this.
  369. #
  370. #AddEncoding x-compress .Z
  371. #AddEncoding x-gzip .gz .tgz
  372. #
  373. # If the AddEncoding directives above are commented-out, then you
  374. # probably should define those extensions to indicate media types:
  375. #
  376. AddType application/x-compress .Z
  377. AddType application/x-gzip .gz .tgz
  378. #
  379. # AddHandler allows you to map certain file extensions to "handlers":
  380. # actions unrelated to filetype. These can be either built into the server
  381. # or added with the Action directive (see below)
  382. #
  383. # To use CGI scripts outside of ScriptAliased directories:
  384. # (You will also need to add "ExecCGI" to the "Options" directive.)
  385. #
  386. #AddHandler cgi-script .cgi
  387. # For type maps (negotiated resources):
  388. #AddHandler type-map var
  389. #
  390. # Filters allow you to process content before it is sent to the client.
  391. #
  392. # To parse .shtml files for server-side includes (SSI):
  393. # (You will also need to add "Includes" to the "Options" directive.)
  394. #
  395. #AddType text/html .shtml
  396. #AddOutputFilter INCLUDES .shtml
  397. </IfModule>
  398. #
  399. # The mod_mime_magic module allows the server to use various hints from the
  400. # contents of the file itself to determine its type. The MIMEMagicFile
  401. # directive tells the module where the hint definitions are located.
  402. #
  403. #MIMEMagicFile etc/apache24/magic
  404. #
  405. # Customizable error responses come in three flavors:
  406. # 1) plain text 2) local redirects 3) external redirects
  407. #
  408. # Some examples:
  409. #ErrorDocument 500 "The server made a boo boo."
  410. #ErrorDocument 404 /missing.html
  411. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  412. #ErrorDocument 402 http://www.example.com/subscription_info.html
  413. #
  414. #
  415. # MaxRanges: Maximum number of Ranges in a request before
  416. # returning the entire resource, or one of the special
  417. # values 'default', 'none' or 'unlimited'.
  418. # Default setting is to accept 200 Ranges.
  419. #MaxRanges unlimited
  420. #
  421. # EnableMMAP and EnableSendfile: On systems that support it,
  422. # memory-mapping or the sendfile syscall may be used to deliver
  423. # files. This usually improves server performance, but must
  424. # be turned off when serving from networked-mounted
  425. # filesystems or if support for these functions is otherwise
  426. # broken on your system.
  427. # Defaults: EnableMMAP On, EnableSendfile Off
  428. #
  429. #EnableMMAP off
  430. #EnableSendfile on
  431. # Supplemental configuration
  432. #
  433. # The configuration files in the etc/apache24/extra/ directory can be
  434. # included to add extra features or to modify the default configuration of
  435. # the server, or you may simply copy their contents here and change as
  436. # necessary.
  437. # Server-pool management (MPM specific)
  438. #Include etc/apache24/extra/httpd-mpm.conf
  439. # Multi-language error messages
  440. #Include etc/apache24/extra/httpd-multilang-errordoc.conf
  441. # Fancy directory listings
  442. #Include etc/apache24/extra/httpd-autoindex.conf
  443. # Language settings
  444. #Include etc/apache24/extra/httpd-languages.conf
  445. # User home directories
  446. #Include etc/apache24/extra/httpd-userdir.conf
  447. # Real-time info on requests and configuration
  448. #Include etc/apache24/extra/httpd-info.conf
  449. # Virtual hosts
  450. #Include etc/apache24/extra/httpd-vhosts.conf
  451. # Local access to the Apache HTTP Server Manual
  452. #Include etc/apache24/extra/httpd-manual.conf
  453. # Distributed authoring and versioning (WebDAV)
  454. #Include etc/apache24/extra/httpd-dav.conf
  455. # Various default settings
  456. #Include etc/apache24/extra/httpd-default.conf
  457. # Configure mod_proxy_html to understand HTML4/XHTML1
  458. <IfModule proxy_html_module>
  459. Include etc/apache24/extra/proxy-html.conf
  460. </IfModule>
  461. # Secure (SSL/TLS) connections
  462. #Include etc/apache24/extra/httpd-ssl.conf
  463. #
  464. # Note: The following must must be present to support
  465. # starting without SSL on platforms with no /dev/random equivalent
  466. # but a statically compiled-in mod_ssl.
  467. #
  468. <IfModule ssl_module>
  469. SSLRandomSeed startup builtin
  470. SSLRandomSeed connect builtin
  471. </IfModule>
  472. # Default Values
  473. ServerTokens Prod
  474. ServerSignature Off
  475. TraceEnable Off
  476. # Well, IncludeOptional behaved lile Include
  477. IncludeOptional etc/apache24/extra/security.con[f]
  478. {% if salt['pillar.get']('apache:mod_ssl:manage_tls_defaults', False) -%}
  479. Include etc/apache24/extra/tls-defaults.conf
  480. {%- endif %}
  481. Include etc/apache24/Includes/*.conf