From: Jeff Trawick Date: Fri, 3 Dec 2010 18:03:55 +0000 (+0000) Subject: generated html X-Git-Tag: 2.3.10~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d11424791d0a1a1a44b64278e0d923ba991fa85;p=thirdparty%2Fapache%2Fhttpd.git generated html git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041939 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/platform/windows.html.en b/docs/manual/platform/windows.html.en index 456e19c4710..f0fadc0675e 100644 --- a/docs/manual/platform/windows.html.en +++ b/docs/manual/platform/windows.html.en @@ -43,6 +43,7 @@
  • Running Apache as a Service
  • Running Apache as a Console Application
  • Testing the Installation
  • +
  • Configuring Access to Network Resources
  • top
    @@ -759,6 +760,48 @@ services include other WWW servers, some firewall implementations, and even some client applications (such as Skype) which will use port 80 to attempt to bypass firewall issues.

    +
    top
    +
    +

    Configuring Access to Network Resources

    + + +

    Access to files over the network can be specified using two + mechanisms provided by Windows:

    + +
    +
    Mapped drive letters
    +
    e.g., Alias /images/ Z:/
    + +
    UNC paths
    +
    e.g., Alias /images/ //imagehost/www/images/
    +
    + +

    Mapped drive letters allow the administrator to maintain the + mapping to a specific machine and path outside of the Apache httpd + configuration. However, these mappings are associated only with + interactive sessions and are not directly available to Apache httpd + when it is started as a service. Use only UNC paths for + network resources in httpd.conf so that the resources can + be accessed consistently regardless of how Apache httpd is started. + (Arcane and error prone procedures may work around the restriction + on mapped drive letters, but this is not recommended.)

    + +

    Example directives with UNC paths

    + + DocumentRoot //dochost/www/html/
    +
    + DocumentRoot //192.168.1.50/docs/
    +
    + Alias /images/ //imagehost/www/images/
    +
    + <Directory //imagehost/www/images/>
    + ...
    + <Directory>
    +

    + +

    When running Apache httpd as a service, you must create a + separate account in order to access network resources, as described + above.

    Available Languages:  en  |