1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/* ProFTPD default path configuration. Normally, Makefiles generated
* by the top-level configuration script define the RUN_DIR and
* CONFIG_FILE_PATH macros, so the two below are typically not used.
*/
#ifndef PROFTPD_PATHS_H
#define PROFTPD_PATHS_H
/* The location you wish to place the "run-time" status file used by
* ftpcount, ftpwho, etc.
*/
#ifndef RUN_DIR
#define RUN_DIR "/var/run/proftpd"
#endif
/* The default location of the proftpd configuration file. Can be
* overriden at runtime with the '-c' switch
*/
#ifndef CONFIG_FILE_PATH
#define CONFIG_FILE_PATH "/etc/proftpd.conf"
#endif
/* The location of your `shells' file; a newline delimited list of
* valid shells on your system.
*/
#define VALID_SHELL_PATH "/etc/shells"
/* Where your log files are kept. The "wu-ftpd style" xferlog is
* stored here, as well as "extended" (not yet available) transfer
* log files. These can be overridden in the configuration file via
* "TransferLog" and "ExtendedLog". (note ExtendedLog does not work yet)
*/
#define XFERLOG_PATH "/var/log/xferlog"
#define EXTLOG_PATH "/var/log/proftpd-log"
/* Location of the file that tells proftpd to discontinue servicing
* requests.
*/
#define SHUTMSG_PATH "/etc/shutmsg"
/* Location of the file containing users that *cannot* use ftp
* services (odd, eh?)
*/
#define FTPUSERS_PATH "/etc/ftpusers"
#endif /* PROFTPD_PATHS_H */
|