搜索
 找回密码
 立即注册

nginx为网站某个目录添加单独的认证

hitok 2023-06-18 11:13 246


  1.     server {
  2.         listen       443 ssl;
  3.         server_name  book.com;

  4.         ssl_certificate      cert.pem;
  5.         ssl_certificate_key  cert.key;

  6.         ssl_session_cache    shared:SSL:1m;
  7.         ssl_session_timeout  5m;

  8.         ssl_ciphers  HIGH:!aNULL:!MD5;
  9.         ssl_prefer_server_ciphers  on;
  10.         location / {
  11.             root C:\website\book;
  12.             index  index.htm index.html index.php;
  13.                     }
  14.          location /加密书籍 {  
  15.         # 基本验证
  16.          root C:\website\book;
  17.         index  index.htm index.html index.php;
  18.         auth_basic "nginx basic auth";
  19.         auth_basic_user_file C:\website\auth.txt;
  20. }
  21.     }


复制代码

密码文件生成网址
[color=var(--external-link)]https://tool.oschina.net/htpasswd
选择方式md5
auth.txt认证文件格式
  1. username:MD5password
复制代码
随机推荐

0 回复

游客
高级模式
返回顶部