View | Details | Raw Unified | Return to bug 41823
Collapse All | Expand All

(-)docs/conf/httpd-win.conf (-1 / +1 lines)
Lines 19-25 Link Here
19
#
19
#
20
# NOTE: Where filenames are specified, you must use forward slashes
20
# NOTE: Where filenames are specified, you must use forward slashes
21
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
21
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
22
# If a drive letter is omitted, the drive on which Apache.exe is located
22
# If a drive letter is omitted, the drive on which httpd.exe is located
23
# will be used by default.  It is recommended that you always supply
23
# will be used by default.  It is recommended that you always supply
24
# an explicit drive letter in absolute paths, however, to avoid
24
# an explicit drive letter in absolute paths, however, to avoid
25
# confusion.
25
# confusion.
(-)docs/manual/platform/win_compiling.xml (-1 / +1 lines)
Lines 375-381 Link Here
375
    <p>This will install the following:</p>
375
    <p>This will install the following:</p>
376
376
377
    <ul>
377
    <ul>
378
      <li><code><em>dir</em>\bin\Apache.exe</code> - Apache
378
      <li><code><em>dir</em>\bin\httpd.exe</code> - Apache
379
      executable</li>
379
      executable</li>
380
380
381
      <li><code><em>dir</em>\bin\ApacheMonitor.exe</code> - Service
381
      <li><code><em>dir</em>\bin\ApacheMonitor.exe</code> - Service
(-)docs/manual/platform/windows.xml (-1 / +1 lines)
Lines 432-438 Link Here
432
      Apache <code>logs</code> directory.</li>
432
      Apache <code>logs</code> directory.</li>
433
433
434
      <li>Grant the account read and execute (RX) rights to the
434
      <li>Grant the account read and execute (RX) rights to the
435
      <code>Apache.exe</code> binary executable.</li>
435
      <code>httpd.exe</code> binary executable.</li>
436
    </ol>
436
    </ol>
437
437
438
    <note>It is usually a good practice to grant the user the Apache
438
    <note>It is usually a good practice to grant the user the Apache
(-)INSTALL (-2 / +2 lines)
Lines 77-84 Link Here
77
  the text "@@" to discover what you must edit.  To install and start the 
77
  the text "@@" to discover what you must edit.  To install and start the 
78
  service after you have corrected the httpd.conf file, use the command
78
  service after you have corrected the httpd.conf file, use the command
79
79
80
    bin\Apache -k install
80
    bin\httpd.exe -k install
81
    bin\Apache -k start
81
    bin\httpd.exe -k start
82
82
83
  The .msi package configures the httpd.conf file, and installs and starts 
83
  The .msi package configures the httpd.conf file, and installs and starts 
84
  the Apache2 service for you.  It also installs plenty of useful shortcuts
84
  the Apache2 service for you.  It also installs plenty of useful shortcuts
(-)modules/ldap/README.ldap (-1 / +1 lines)
Lines 38-44 Link Here
38
3. Compile the two modules util_ldap and mod_authnz_ldap using the dsp files
38
3. Compile the two modules util_ldap and mod_authnz_ldap using the dsp files
39
4. You get a mod_authnz_ldap.so and a mod_ldap.so module
39
4. You get a mod_authnz_ldap.so and a mod_ldap.so module
40
5. Put them in the modules directory, don't forget to copy the
40
5. Put them in the modules directory, don't forget to copy the
41
   nsldap32v50.dll somewhere where apache.exe will find it
41
   nsldap32v50.dll somewhere where httpd.exe will find it
42
6. Load the two modules in your httpd.conf, like below:
42
6. Load the two modules in your httpd.conf, like below:
43
   LoadModule ldap_module modules/mod_ldap.so
43
   LoadModule ldap_module modules/mod_ldap.so
44
   LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
44
   LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
(-)server/mpm/winnt/mpm_winnt.c (-1 / +1 lines)
Lines 586-592 Link Here
586
    apr_pool_create_ex(&ptemp, p, NULL, NULL);
586
    apr_pool_create_ex(&ptemp, p, NULL, NULL);
587
587
588
    /* Build the command line. Should look something like this:
588
    /* Build the command line. Should look something like this:
589
     * C:/apache/bin/apache.exe -f ap_server_confname
589
     * C:/apache/bin/httpd.exe -f ap_server_confname
590
     * First, get the path to the executable...
590
     * First, get the path to the executable...
591
     */
591
     */
592
    apr_procattr_create(&attr, ptemp);
592
    apr_procattr_create(&attr, ptemp);

Return to bug 41823