HEX
Server: Apache
System: Linux vpshost0650.publiccloud.com.br 4.4.79-grsec-1.lc.x86_64 #1 SMP Wed Aug 2 14:18:21 -03 2017 x86_64
User: bandeirantesbomb3 (10068)
PHP: 8.0.7
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: //usr/share/doc/pure-ftpd-1.0.36/README.Configuration-File
Unlike many daemons, Pure-FTPd doesn't read any configuration file (but for
LDAP and SQL). Instead, it uses command-line options. For instance, the '-H'
flag is designed to speed up highly loaded servers, by avoiding DNS lookups.
To enable this, just add it to the server name:

/usr/local/sbin/pure-ftpd -H

Alternative long options are also supported. Here's an equivalent of the
previous command:

/usr/local/sbin/pure-ftpd --dontresolve

But you can use traditional configuration files over command-line
options. Adding a parser for configuration files in the server is a bad
idea. It slows down everything and needs resources for nothing.

If you want to use a configuration file with Pure-FTPd, you can, through
a wrapper. That wrapper will parse a file and convert it to command-line
options. Then, the server will be started with these options.

Please have a look at the 'configuration-files' directory. Copy the sample
configuration file called 'pure-ftpd.conf' to a suitable location, say /etc:

cd configuration-files
cp pure-ftpd.conf /etc

Edit /etc/pure-ftpd.conf according to your needs.

Then, to start the server, just run the following command:

chmod 755 pure-config.pl
./pure-config.pl /etc/pure-ftpd.conf

This is a simple Perl script that will run /usr/local/sbin/pure-ftpd with
the right options, according to the configuration file.

And because there's a Python vs. Perl friendly war since ages, we also
provide a Python version of this program ('pure-config.py').

Should any of these config tools contain a wrong path or fail otherwise,
please file a bug report.