Skip to content

Commit 2fc64b8

Browse files
committed
Added Portable SFTP Server Tool
1 parent eedb223 commit 2fc64b8

File tree

3 files changed

+78
-0
lines changed

3 files changed

+78
-0
lines changed

SFTP/RebexTinySftpServer/README.TXT

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
====================================
2+
Rebex Tiny SFTP Server
3+
====================================
4+
5+
A minimalist SFTP server for testing purposes.
6+
http://labs.rebex.net/tiny-sftp-server/
7+
8+
9+
Usage
10+
-------------------------------------
11+
Just run the exe and press the Start button.
12+
Configure it by editing RebexTinySftpServer.exe.config when needed.
13+
14+
15+
Licensing
16+
-------------------------------------
17+
Rebex Sample Code License
18+
19+
Copyright (c) 2015, Rebex CR s.r.o. www.rebex.net,
20+
All rights reserved.
21+
22+
Permission to use, copy, modify, and/or distribute this software
23+
for any purpose with or without fee is hereby granted
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26+
EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
27+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
29+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
30+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32+
OTHER DEALINGS IN THE SOFTWARE.
33+
34+
35+
Licensing - third party components
36+
-------------------------------------
37+
38+
Data transfer icon is licensed under the
39+
Creative Commons Attribution-Share Alike 3.0 Unported license.
40+
41+
To find out more, see:
42+
https://commons.wikimedia.org/wiki/File:Data-transfer.svg
43+
44+
45+
Modifying the source code
46+
-------------------------------------
47+
To compile the project, you need Rebex File Server component.
48+
Download a trial version or purchase a license here:
49+
http://www.rebex.net/file-server/
50+
1.67 MB
Binary file not shown.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<appSettings>
4+
<!-- user and root dir -->
5+
<add key="userName" value="tester"/>
6+
<add key="userPassword" value="password"/>
7+
<add key="userRootDir" value="data"/>
8+
9+
<!-- user public keys for public key authentication (optional) -->
10+
<add key="userPublicKeyDir" value=""/>
11+
12+
<!-- misc config -->
13+
<add key="showUserDetailsOnStartup" value="true"/>
14+
15+
<!-- security -->
16+
<add key="rsaPrivateKeyFile" value="server-private-key-rsa.ppk"/>
17+
<add key="rsaPrivateKeyPassword" value="my-super-secure-password"/>
18+
19+
<add key="dssPrivateKeyFile" value="server-private-key-dss.ppk"/>
20+
<add key="dssPrivateKeyPassword" value="my-super-secure-password"/>
21+
22+
<!-- port -->
23+
<add key="sshPort" value="22"/>
24+
25+
<!-- start server when application is started? -->
26+
<add key="autoStart" value="false"/>
27+
</appSettings>
28+
</configuration>

0 commit comments

Comments
 (0)