mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 05:30:07 -06:00
63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
Menu="NetworkServices:999"
|
|
Title="FTP Server"
|
|
Icon="ftp-server.png"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2016, Lime Technology
|
|
* Copyright 2012-2016, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
|
|
<?
|
|
$ftp_userlist_file = "/boot/config/vsftpd.user_list";
|
|
$ftp_userlist = "";
|
|
if (file_exists($ftp_userlist_file)) {
|
|
$ftp_userlist = str_replace("\n", " ", trim(file_get_contents($ftp_userlist_file)));
|
|
if ($ftp_userlist === false) $ftp_userlist = "";
|
|
}
|
|
$ftp_server = exec("lsof -i:21 -Pln|awk '/\(LISTEN\)/{print $2;exit}'") ? 1 : 0;
|
|
?>
|
|
<script>
|
|
$(function() {
|
|
showStatus('21');
|
|
});
|
|
</script>
|
|
|
|
<form markdown="1" method="POST" action="/update.php" target="progressFrame">
|
|
<input type="hidden" name="#command" value="/webGui/scripts/ftpusers">
|
|
|
|
FTP server:
|
|
: <select name="#arg[1]" size="1">
|
|
<?=mk_option($ftp_server, "0", "Disabled")?>
|
|
<?=mk_option($ftp_server, "1", "Enabled")?>
|
|
</select>
|
|
|
|
> Enable or disable the FTP server daemon. By default the FTP server is enabled.
|
|
> This setting is not saved, i.e. upon system reboot it will revert to its default setting.
|
|
|
|
FTP user(s):
|
|
: <input type="text" name="#arg[2]" size="40" maxlength="80" value="<?=$ftp_userlist;?>">
|
|
|
|
> Enter the user names (separated by spaces) permitted to access the server using FTP.
|
|
> To disallow any user access, clear this setting.
|
|
>
|
|
> **Note:** do not enter user name `root` since this may cause problems in the future.
|
|
|
|
|
|
: <input type="submit" value="Apply"><input type="button" value="Done" onclick="done()">
|
|
|
|
</form>
|
|
|
|
> ### Overview
|
|
>
|
|
> unRAID includes the popular `vsftpd` FTP server. The configuration of `vsftp` is currently very
|
|
> simple: **All** user names entered above are permitted to access the server via FTP and will have
|
|
> *full read/write/delete access* to the entire server, so use with caution.
|