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

  • 相关阅读:
    Lucene综合案例
    Lucene 高级搜索
    Lucene 分词器
    Lucene 索引维护
    Lucene Field域类型
    Lucene入门
    Lucene介绍和全文检索流程
    数据查询方法
    序列化
    drf
  • 原文地址:https://www.cnblogs.com/zulin/p/6559947.html
Copyright © 2011-2022 走看看