-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFtpServer.xml
More file actions
64 lines (56 loc) · 1.61 KB
/
Copy pathFtpServer.xml
File metadata and controls
64 lines (56 loc) · 1.61 KB
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
<?xml version="1.0"?>
<quickserver>
<name>QuickFTPServer v 0.2</name>
<port>8021</port>
<bind-address>0.0.0.0</bind-address>
<client-command-handler>
ftpserver.CommandHandler
</client-command-handler>
<client-data>
ftpserver.Data
</client-data>
<client-authentication-handler>
ftpserver.Authenticator
</client-authentication-handler>
<max-connection>10</max-connection>
<max-connection-msg>421 Server Busy</max-connection-msg>
<!-- Config QSAdminServer -->
<qsadmin-server>
<port>9821</port>
<server-banner>
QSAdminServer Started on port : 9821
</server-banner>
<command-plugin>
ftpserver.QSAdminCommandPlugin
</command-plugin>
<command-shell>
<enable>true</enable>
<prompt-name>FTPServer</prompt-name>
</command-shell>
<communication-logging>
<enable>false</enable>
</communication-logging>
</qsadmin-server>
<!-- Config QSAdminServer -->
<!-- Config Console Logging -->
<console-logging-level>INFO</console-logging-level>
<console-logging-formatter>
org.quickserver.util.logging.SimpleConsoleFormatter
</console-logging-formatter>
<!-- Config Console Logging -->
<!-- -->
<application-configuration>
<property>
<property-name>FTP_ROOT</property-name>
<property-value>/Users/akshath/Dropbox/development/QuickServer/git/QuickServer-Main/build/</property-value>
</property>
</application-configuration>
<!-- -->
<communication-logging>
<enable>true</enable>
</communication-logging>
<init-server-hooks>
<class-name>ftpserver.SetupLoggingHook</class-name>
</init-server-hooks>
<application-jar-path>../dist/ftpserver.jar</application-jar-path>
</quickserver>