Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1086)

Side by Side Diff: third_party/apache-win32/conf/original/extra/httpd-userdir.conf

Issue 147313008: Check Win32 Apache+PHP into third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Settings for user home directories
2 #
3 # Required module: mod_userdir
4
5 #
6 # UserDir: The name of the directory that is appended onto a user's home
7 # directory if a ~user request is received. Note that you must also set
8 # the default access control for these directories, as in the example below.
9 #
10 UserDir "My Documents/My Website"
11
12 #
13 # Control access to UserDir directories. The following is an example
14 # for a site where these directories are restricted to read-only.
15 #
16 <Directory "C:/Users/*/My Documents/My Website">
17 AllowOverride FileInfo AuthConfig Limit Indexes
18 Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
19 <Limit GET POST OPTIONS>
20 Order allow,deny
21 Allow from all
22 </Limit>
23 <LimitExcept GET POST OPTIONS>
24 Order deny,allow
25 Deny from all
26 </LimitExcept>
27 </Directory>
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698