1
0

005-httpd_conf.patch 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Index: httpd-2.4.25/docs/conf/httpd.conf.in
  2. ===================================================================
  3. --- httpd-2.4.25.orig/docs/conf/httpd.conf.in
  4. +++ httpd-2.4.25/docs/conf/httpd.conf.in
  5. @@ -63,7 +63,6 @@ Listen @@Port@@
  6. # Example:
  7. # LoadModule foo_module modules/mod_foo.so
  8. #
  9. -@@LoadModule@@
  10. <IfModule unixd_module>
  11. #
  12. @@ -74,8 +73,8 @@ Listen @@Port@@
  13. # It is usually good practice to create a dedicated user and group for
  14. # running httpd, as with most system services.
  15. #
  16. -User daemon
  17. -Group daemon
  18. +User nobody
  19. +Group nogroup
  20. </IfModule>
  21. @@ -188,7 +187,7 @@ ErrorLog "@rel_logfiledir@/error_log"
  22. # Possible values include: debug, info, notice, warn, error, crit,
  23. # alert, emerg.
  24. #
  25. -LogLevel warn
  26. +LogLevel debug
  27. <IfModule log_config_module>
  28. #
  29. @@ -330,7 +329,7 @@ LogLevel warn
  30. # contents of the file itself to determine its type. The MIMEMagicFile
  31. # directive tells the module where the hint definitions are located.
  32. #
  33. -#MIMEMagicFile @rel_sysconfdir@/magic
  34. +MIMEMagicFile @rel_sysconfdir@/magic
  35. #
  36. # Customizable error responses come in three flavors:
  37. @@ -360,7 +359,7 @@ LogLevel warn
  38. # Defaults: EnableMMAP On, EnableSendfile Off
  39. #
  40. #EnableMMAP off
  41. -#EnableSendfile on
  42. +EnableSendfile off
  43. # Supplemental configuration
  44. #
  45. @@ -411,8 +410,8 @@ Include @rel_sysconfdir@/extra/proxy-htm
  46. # starting without SSL on platforms with no /dev/random equivalent
  47. # but a statically compiled-in mod_ssl.
  48. #
  49. -<IfModule ssl_module>
  50. -SSLRandomSeed startup builtin
  51. -SSLRandomSeed connect builtin
  52. -</IfModule>
  53. +#<IfModule ssl_module>
  54. +#SSLRandomSeed startup builtin
  55. +#SSLRandomSeed connect builtin
  56. +#</IfModule>