Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The following page has been changed by sjorge: http://wiki.apache.org/httpd/ApacheVirtualHostMysql ------------------------------------------------------------------------------ === adding users (require/optional) === Only require when you enable webdav for a host. {{{ - INSERT INTO users VALUES(null, 1, 'user', 'apache-ecoded-password', 'dav'); + INSERT INTO users VALUES(null, 1, 'user', 'apache-encrypted-password', 'dav'); - null = auto increment user id - 1 = host id user belongs too (check hosts table to get it) - 'user' = user name for }}} + || value || description || + || null || auto increment user id || + || 1 || host id user belongs too (check hosts table to get it) || + || 'user' || user name || + || 'apache-encrypted-password' || password for user. check httpd doc for encryption ([http://httpd.apache.org/docs/2.2/misc/password_encryptions.html here]) || + || 'dav' || group(s) for user. dav = enables webdav access || === adding aliases (optional) === === adding addition configuration options (optional) ===
