SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Revision of Virtual users from Mon, 09/27/2010 - 13:43
Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.
Create a separate "ftpgroup" group and an "ftpuser" user:
groupadd ftpgroup
useradd -g ftpgroup -d /dev/null -s /etc ftpuser
Commiting changes
Any changes you make to the virtual users won't be recognized by Pure-FTPd until you commit the changes in /etc/pureftpd.passwd
into a PureDB file/etc/pureftpd.pdb
:
pure-pw mkpd
There's no need to restart the pure-ftpd server to commit changes.
Enabled virtual user support
Assuming that Pure-FTPd has been compiled with virtual user support (./configure --with-puredb
), add this switch to your startup command (i.e. /service/pure-ftpd/run
):
-lpuredb:/etc/pureftpd.pdb
All maintenance of virtual users will be handled with the pure-pw
command:
- Add a user:
pure-pw useradd joe -u ftpuser -d /home/ftpusers/joe
- Delete a user:
pure-pw userdel joe
- Change a password:
pure-pw passwd joe
- Log in to post comments