From: Jeff Trawick Date: Fri, 3 Dec 2010 20:30:51 +0000 (+0000) Subject: generated files X-Git-Tag: 2.2.18~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffa4fc265b8b091f4aaf011c0a7f18e061ad4dcc;p=thirdparty%2Fapache%2Fhttpd.git generated files git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1041983 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/platform/windows.html.en b/docs/manual/platform/windows.html.en index 81b7b5e9459..68f7bde7a74 100644 --- a/docs/manual/platform/windows.html.en +++ b/docs/manual/platform/windows.html.en @@ -42,6 +42,7 @@
  • Running Apache as a Service
  • Running Apache as a Console Application
  • Testing the Installation
  • +
  • Configuring Access to Network Resources
  • top
    @@ -692,6 +693,51 @@ 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 DocumentRoot with UNC path

    + DocumentRoot //dochost/www/html/ +

    + +

    Example DocumentRoot with IP address in UNC path

    + DocumentRoot //192.168.1.50/docs/
    +

    + +

    Example Alias and corresponding Directory with UNC path

    + 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  | diff --git a/docs/manual/platform/windows.xml.ko b/docs/manual/platform/windows.xml.ko index e53280f4e41..55ed78eb466 100644 --- a/docs/manual/platform/windows.xml.ko +++ b/docs/manual/platform/windows.xml.ko @@ -1,7 +1,7 @@ - +