From c0b7206652b2852bc574694e7ba07ba1c2acdc00 Mon Sep 17 00:00:00 2001 From: hongbotian Date: Mon, 30 Nov 2015 03:10:21 -0500 Subject: delete app Change-Id: Id4c572809969ebe89e946e88063eaed262cff3f2 Signed-off-by: hongbotian --- rubbos/app/apache2/manual/mod/mod_userdir.html.en | 173 ---------------------- 1 file changed, 173 deletions(-) delete mode 100644 rubbos/app/apache2/manual/mod/mod_userdir.html.en (limited to 'rubbos/app/apache2/manual/mod/mod_userdir.html.en') diff --git a/rubbos/app/apache2/manual/mod/mod_userdir.html.en b/rubbos/app/apache2/manual/mod/mod_userdir.html.en deleted file mode 100644 index 8eab30c5..00000000 --- a/rubbos/app/apache2/manual/mod/mod_userdir.html.en +++ /dev/null @@ -1,173 +0,0 @@ - - - -mod_userdir - Apache HTTP Server - - - - - - -
<-
- -
-

Apache Module mod_userdir

-
-

Available Languages:  en  | - ja  | - ko  | - tr 

-
- - - -
Description:User-specific directories
Status:Base
Module Identifier:userdir_module
Source File:mod_userdir.c
-

Summary

- -

This module allows user-specific directories to be accessed using the -http://example.com/~user/ syntax.

-
- - -
top
-

UserDir Directive

- - - - - - - -
Description:Location of the user-specific directories
Syntax:UserDir directory-filename
Default:UserDir public_html
Context:server config, virtual host
Status:Base
Module:mod_userdir
- -

The UserDir directive sets the real - directory in a user's home directory to use when a request for a - document for a user is received. Directory-filename is - one of the following:

- -
    -
  • The name of a directory or a pattern such as those shown - below.
  • - -
  • The keyword disabled. This turns off - all username-to-directory translations except those - explicitly named with the enabled keyword (see - below).
  • - -
  • The keyword disabled followed by a - space-delimited list of usernames. Usernames that appear in - such a list will never have directory translation - performed, even if they appear in an enabled - clause.
  • - -
  • The keyword enabled followed by a - space-delimited list of usernames. These usernames will have - directory translation performed even if a global disable is - in effect, but not if they also appear in a - disabled clause.
  • -
- -

If neither the enabled nor the - disabled keywords appear in the - Userdir directive, the argument is treated as a - filename pattern, and is used to turn the name into a directory - specification. A request for - http://www.foo.com/~bob/one/two.html will be - translated to:

- - - - - - - -
UserDir directive usedTranslated path
UserDir public_html~bob/public_html/one/two.html
UserDir /usr/web/usr/web/bob/one/two.html
UserDir /home/*/www/home/bob/www/one/two.html
- -

The following directives will send redirects to the client:

- - - - - - - -
UserDir directive usedTranslated path
UserDir http://www.foo.com/usershttp://www.foo.com/users/bob/one/two.html
UserDir -http://www.foo.com/*/usrhttp://www.foo.com/bob/usr/one/two.html
UserDir -http://www.foo.com/~*/http://www.foo.com/~bob/one/two.html
- -
- Be careful when using this directive; for instance, - "UserDir ./" would map "/~root" to - "/" - which is probably undesirable. It is strongly - recommended that your configuration include a "UserDir - disabled root" declaration. See also the Directory directive and the Security Tips page for - more information. -
- -

Additional examples:

- -

To allow a few users to have UserDir directories, but -not anyone else, use the following:

- -

-UserDir disabled
-UserDir enabled user1 user2 user3 -

- -

To allow most users to have UserDir directories, but -deny this to a few, use the following:

- -

-UserDir enabled
-UserDir disabled user4 user5 user6 -

- -

It is also possible to specify alternative user directories. -If you use a command like:

-

-Userdir public_html /usr/web http://www.foo.com/ -

-

With a request for http://www.foo.com/~bob/one/two.html, will try to -find the page at ~bob/public_html/one/two.html first, then -/usr/web/bob/one/two.html, and finally it will send a redirect -to http://www.foo.com/bob/one/two.html.

-

If you add a redirect, it must be the last alternative in the list. -Apache cannot determine if the redirect succeeded or not, so if you have -the redirect earlier in the list, that will always be the alternative -that is used.

- - -

See also

- -
-
-
-

Available Languages:  en  | - ja  | - ko  | - tr 

-
- \ No newline at end of file -- cgit 1.2.3-korg