zoukankan      html  css  js  c++  java
  • linux ftp搭建

    # No anonymous login
    anonymous_enable=NO
    # Let local users login
    # If you connect from the internet with local users, you should enable TLS/SSL/FTPS
    local_enable=YES
    
    # Write permissions
    write_enable=YES

    # 1. All users are jailed by default:
    chroot_local_user=YES
    chroot_list_enable=NO
    
    # 2. Just some users are jailed:
    chroot_local_user=NO
    chroot_list_enable=YES
    # Create the file /etc/vsftpd.chroot_list with a list of the jailed users.
    
    # 3. Just some users are "free":
    chroot_local_user=YES
    chroot_list_enable=YES
    # Create the file /etc/vsftpd.chroot_list with a list of the "free" users.

    参考: https://ubuntuforums.org/showthread.php?t=518293&p=3138955#post3138955

  • 相关阅读:
    Swagger入门
    UOS
    Java多线程
    英语语法小知识-Unit1
    MVVM
    Vue入门
    Mybatis入门
    Python pip install
    js 触发LinkButton点击事件,执行后台方法
    ajax 请求 ascx
  • 原文地址:https://www.cnblogs.com/zulin/p/6559947.html
Copyright © 2011-2022 走看看