-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathproftpd.conf.template
78 lines (59 loc) · 2.29 KB
/
proftpd.conf.template
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
ServerName "Galaxy CloudMan FTP"
ServerType standalone
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Don't use IPv6 support by default.
UseIPv6 on
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
SyslogFacility DAEMON
SyslogLevel debug
PidFile /var/run/proftpd.pid
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
PassivePorts 30000 30100
DisplayConnect REPLACE_THIS_WITH_CUSTOM_INSTALL_DIR/etc/welcome_msg.txt
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
AllowStoreRestart on
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
<Limit RETR>
DenyAll
</Limit>
<IfModule mod_facts.c>
FactsAdvertise off
</IfModule>
<Limit MFMT MFCT MFF SITE_UTIME>
DenyAll
</Limit>
# AuthPAM off
CreateHome on dirmode 700
SQLPasswordEngine on
SQLPasswordEncoding hex
SQLEngine on
SQLLogFile /var/log/proftpd-sql.log
SQLBackend postgres
SQLConnectInfo galaxy@localhost:$postgres_port galaxyftp $galaxy_ftp_user_password
SQLAuthTypes SHA1
SQLAuthenticate users
SQLDefaultUID $galaxy_uid
SQLDefaultGID $galaxy_uid
SQLDefaultHomedir $install_dir/var
SQLUserInfo custom:/LookupGalaxyUser
SQLNamedQuery LookupGalaxyUser SELECT "email,password,'$galaxy_uid','$galaxy_uid','$galaxy_fs/tmp/ftp/%U','/bin/bash' from galaxy_user where email='%U'"