Annotation of wikisrc/lighttpd_on_netbsd.mdwn, revision 1.1

1.1     ! mspo        1: **Contents**
        !             2: 
        !             3: [[!toc]]
        !             4: 
        !             5: ##  Prelude 
        !             6: 
        !             7: How to deploy a high performance webserver using NetBSD and Lighttpd. 
        !             8: 
        !             9: ##  Installation 
        !            10: 
        !            11: We will install it from pkgsrc because we need some fetures which are not enabled in the binary. 
        !            12: 
        !            13: First of all, let's use gamin as the default file alteration monitor instead of fam: 
        !            14:     
        !            15:     # FAM_DEFAULT=gamin
        !            16:     
        !            17: 
        !            18: Of course you can stick with fam if you'd like. 
        !            19: 
        !            20: After that we will enable fam support in lighty: 
        !            21:     
        !            22:     # echo PKG_OPTIONS.lighttpd=fam >> /etc/mk.conf
        !            23:     
        !            24: 
        !            25: Now the good old magic words: 
        !            26:     
        !            27:     # cd /usr/pkgsrc/www/lighttpd/
        !            28:     # make install clean clean-depends
        !            29:     
        !            30: 
        !            31: Install the rc.d files if you dont do that automaticaly: 
        !            32:     
        !            33:     # cp /usr/pkg/share/examples/rc.d/lighttpd /etc/rc.d/
        !            34:     
        !            35: 
        !            36: ##  The lighttpd user 
        !            37: 
        !            38: By default there is no user created for lighttpd, thus you will have to create one: 
        !            39:     
        !            40:     # groupadd lighttpd
        !            41:     # useradd -s /sbin/nologin -g lighttpd lighttpd
        !            42:     
        !            43: 
        !            44: ##  Configuration 
        !            45: 
        !            46: Set the docroot whereever you want: 
        !            47:     
        !            48:     server.document-root        = "/srv/lighttpd/htdocs"
        !            49:     
        !            50: 
        !            51: Set the default location for logs: 
        !            52:     
        !            53:     server.errorlog             = "/var/log/lighttpd/error.log"
        !            54:     accesslog.filename          = "/var/log/lighttpd/access.log"
        !            55:     
        !            56: 
        !            57: You need to create the directory /var/log/lighttpd with proper permissions: 
        !            58:     
        !            59:     # install -d -o lighttpd -g lighttpd /var/log/lighttpd
        !            60:     
        !            61: 
        !            62: Let's use the user we have created for lighttpd: 
        !            63:     
        !            64:     server.username            = "lighttpd"
        !            65:     server.groupname           = "lighttpd"
        !            66:     
        !            67: 
        !            68: Enable kqueue: 
        !            69:     
        !            70:     server.event-handler        = "kqueue"
        !            71:     
        !            72: 
        !            73: Enable fam: 
        !            74:     
        !            75:     server.stat-cache-engine    = "fam"
        !            76:     
        !            77: 
        !            78: ##  Testing the setup 
        !            79: 
        !            80: You can start the webserver with: 
        !            81:     
        !            82:     /etc/rc.d/lighttpd start
        !            83:     
        !            84: 
        !            85: Check your logs if you encounter any problem. 
        !            86: 
        !            87: ##  Setting up authentication 
        !            88: 
        !            89: ###  Directory server 
        !            90: 
        !            91: We will use OpenLdap. 
        !            92: 
        !            93: First of all deploy a working ldap server, and populate it with the the users. For more information on this, read [OpenLDAP Authentication on NetBSD][10]. 
        !            94: 
        !            95:    [10]: /OpenLDAP_Authentication_on_NetBSD (OpenLDAP Authentication on NetBSD)
        !            96: 
        !            97: Be sure to load mod_auth and include the following in your lighttpd.conf file: 
        !            98:     
        !            99:     
        !           100:     # ldap authentication
        !           101:     auth.backend               = "ldap"
        !           102:      
        !           103:     auth.backend.ldap.hostname = "grimnismal.local"
        !           104:     auth.backend.ldap.base-dn  = "dc=grimnismal,dc=local"
        !           105:     auth.backend.ldap.filter   = "(uid=$)"
        !           106:      
        !           107:     auth.backend.ldap.bind-dn  = "cn=Manager,dc=grimnismal,dc=local"
        !           108:     
        !           109:     # passwd for bind-dn, separated for security reasons
        !           110:     # contains: auth.backend.ldap.bind-pw  = "your-password"
        !           111:     # It must NOT be word readable!
        !           112:     #
        !           113:     include "ldapsecret"
        !           114:      
        !           115:     auth.require               = ( "/server-status" =>
        !           116:                                    (
        !           117:                                      "method"  => "basic",
        !           118:                                      "realm"   => "Admin only page",
        !           119:                                      "require" => "user=replaced"
        !           120:                                    ),
        !           121:                                    "/server-config" =>
        !           122:                                    (
        !           123:                                      "method"  => "basic",      
        !           124:                                      "realm"   => "Staff only page",
        !           125:                                      "require" => "valid-user"  
        !           126:                                    )
        !           127:                                  )
        !           128:     
        !           129: 

CVSweb for NetBSD wikisrc <wikimaster@NetBSD.org> software: FreeBSD-CVSweb