lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

005-httpd_conf.patch (1663B)


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