Skip to content

Commit ed24975

Browse files
author
Tony Stevenson
committed
Backporting to 2.2 for PR 41823
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@619749 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9b38833 commit ed24975

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
the text "@@" to discover what you must edit. To install and start the
6868
service after you have corrected the httpd.conf file, use the command
6969

70-
bin\Apache -k install
71-
bin\Apache -k start
70+
bin\httpd -k install
71+
bin\httpd -k start
7272

7373
The .msi package configures the httpd.conf file, and installs and starts
7474
the Apache2 service for you. It also installs plenty of useful shortcuts

docs/manual/platform/win_compiling.html.en

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ nmake /f Makefile.win installd INSTDIR=<em>dir</em>
374374
<p>This will install the following:</p>
375375

376376
<ul>
377-
<li><code><em>dir</em>\bin\Apache.exe</code> - Apache
377+
<li><code><em>dir</em>\bin\httpd.exe</code> - Apache
378378
executable</li>
379379

380380
<li><code><em>dir</em>\bin\ApacheMonitor.exe</code> - Service

docs/manual/platform/win_compiling.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ nmake /f Makefile.win installd INSTDIR=<em>dir</em>
375375
<p>This will install the following:</p>
376376

377377
<ul>
378-
<li><code><em>dir</em>\bin\Apache.exe</code> - Apache
378+
<li><code><em>dir</em>\bin\httpd.exe</code> - Apache
379379
executable</li>
380380

381381
<li><code><em>dir</em>\bin\ApacheMonitor.exe</code> - Service

docs/manual/platform/windows.html.en

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@
433433
Apache <code>logs</code> directory.</li>
434434

435435
<li>Grant the account read and execute (RX) rights to the
436-
<code>Apache.exe</code> binary executable.</li>
436+
<code>httpd.exe</code> binary executable.</li>
437437
</ol>
438438

439439
<div class="note">It is usually a good practice to grant the user the Apache

docs/manual/platform/windows.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@
433433
Apache <code>logs</code> directory.</li>
434434

435435
<li>Grant the account read and execute (RX) rights to the
436-
<code>Apache.exe</code> binary executable.</li>
436+
<code>httpd.exe</code> binary executable.</li>
437437
</ol>
438438

439439
<note>It is usually a good practice to grant the user the Apache

modules/ldap/README.ldap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Quick installation instructions (win32):
3838
3. Compile the two modules util_ldap and mod_authnz_ldap using the dsp files
3939
4. You get a mod_authnz_ldap.so and a mod_ldap.so module
4040
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
4242
6. Load the two modules in your httpd.conf, like below:
4343
LoadModule ldap_module modules/mod_ldap.so
4444
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so

server/mpm/winnt/mpm_winnt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ static int create_process(apr_pool_t *p, HANDLE *child_proc, HANDLE *child_exit_
634634
apr_pool_create_ex(&ptemp, p, NULL, NULL);
635635

636636
/* Build the command line. Should look something like this:
637-
* C:/apache/bin/apache.exe -f ap_server_confname
637+
* C:/apache/bin/httpd.exe -f ap_server_confname
638638
* First, get the path to the executable...
639639
*/
640640
apr_procattr_create(&attr, ptemp);

0 commit comments

Comments
 (0)