~blankon/blankon/lighttpd.head

« back to all changes in this revision

Viewing changes to doc/config/conf.d/userdir.conf

  • Committer: Bazaar Package Importer
  • Author(s): Lorenzo De Liso
  • Date: 2010-10-15 21:01:50 UTC
  • mfrom: (6.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20101015210150-edjmolu35qt56evm
Tags: 1.4.28-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: 
    + libgamin-dev rather than libfam-dev to fix startup warning.
    + debhelper Build-depends bumped to (>= 7.0.50) for
      overrides in rules file. 
  - debian/index.html: s/Debian/Ubuntu/g branding on the default page.
  - Added a UFW profile set:
    + debian/lighttpd.dirs: added etc/ufw/applications.d
    + debian/rules: install the ufw profile.
    + debian/control: Suggests on ufw.
  - Add lighttpd-dev package:
    + debian/control: Added lighttpd-dev package; Build-depends on
      automake, libtool
    + debian/lighttpd-dev.install: Added.
  - debian/rules:
    + Add override_dh_installinit to set "defaults 91 09" to not start
      before apache2 but in the same runlevel with the same priority.
  - debian/patches/build-dev-package.patch: Updated
  - debian/lighttpd.conf: Comment 'use-ipv6.pl' by default, which causes
    failure to bind port in ipv4 (LP: #551211)
* debian/patches/build-dev-package.patch: updated
* Dropped changes:
  - debian/lighttpd.init: clean environment; Check syntax during start/reload:
    this change has been applied in the debian package
  - syntax_check function defined in init script. (LP: #600767): this change
    has been applied in the debian package
  - debian/patches/build-dev-package.patch: Updated: patch updated newly 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#######################################################################
 
2
##
 
3
##  Userdir Module 
 
4
## ----------------
 
5
##
 
6
## for all details see:
 
7
##   http://www.lighttpd.net/documentation/userdir.html
 
8
##
 
9
server.modules += ( "mod_userdir" )
 
10
 
 
11
##
 
12
## usually it should be set to "public_html" to take ~/public_html/ as
 
13
## the document root
 
14
## Default: empty (document root is the home directory)
 
15
##
 
16
userdir.path = "public_html"
 
17
 
 
18
##
 
19
## If set, don't check /etc/passwd for homedir
 
20
## Default: empty
 
21
#userdir.basepath = server_root + "/users/"
 
22
 
 
23
##
 
24
## list of usernames which may not use this feature
 
25
## Default: empty (all users may use it)
 
26
##
 
27
#userdir.exclude-user = ( "root", "postmaster" )
 
28
 
 
29
##
 
30
## if set, only users from this list may use the feature
 
31
## Default: empty (all users may use it) 
 
32
##
 
33
#userdir.include-user = ("user1", "user2")
 
34
 
 
35
##
 
36
#######################################################################
 
37